forked from intersystems-community/DeepSeeWeb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathiris.script
More file actions
executable file
·22 lines (18 loc) · 745 Bytes
/
iris.script
File metadata and controls
executable file
·22 lines (18 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Unexpire passwords to simplify dev mode. Comment these two lines for Production use
zn "%SYS"
Do ##class(Security.Users).UnExpireUserPasswords("*")
; enabling callin for Embedded Python
do ##class(Security.Services).Get("%Service_CallIn",.prop)
set prop("Enabled")=1
set prop("AutheEnabled")=48
do ##class(Security.Services).Modify("%Service_CallIn",.prop)
// create IRISAPP namespace
do $SYSTEM.OBJ.Load("/home/irisowner/irisdev/Installer.cls", "ck")
set sc = ##class(App.Installer).setup()
// Install samples BI
zn "IRISAPP"
zpm "install samples-bi"
// load all the code of the project as a ZPM package
zn "IRISAPP"
zpm "load /home/irisowner/irisdev/ -v":1:1
halt