We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef2e41d commit da98c5aCopy full SHA for da98c5a
2 files changed
Dockerfile-web
dev.md
@@ -35,3 +35,18 @@ repo -n registry -r -url https://test.pm.community.intersystems.com/registry/ -u
35
```
36
repo -r -n registry -url https://pm.community.intersystems.com/
37
38
+
39
+## create a web app in dockerfile
40
+```
41
+zn "%SYS" \
42
+ write "Create web application ...",! \
43
+ set webName = "/csp/irisweb" \
44
+ set webProperties("NameSpace") = "IRISAPP" \
45
+ set webProperties("Enabled") = 1 \
46
+ set webProperties("CSPZENEnabled") = 1 \
47
+ set webProperties("AutheEnabled") = 32 \
48
+ set webProperties("iKnowEnabled") = 1 \
49
+ set webProperties("DeepSeeEnabled") = 1 \
50
+ set sc = ##class(Security.Applications).Create(webName, .webProperties) \
51
+ write "Web application "_webName_" has been created!",!
52
0 commit comments