From f423256e1ec8aa3fbfee1c22eeca7b0cee6fcda8 Mon Sep 17 00:00:00 2001 From: jrpereirajr Date: Tue, 13 Aug 2024 14:44:34 -0300 Subject: [PATCH] example databases and creation of examples table --- iris.script | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/iris.script b/iris.script index 96f82ed..e46c26d 100755 --- a/iris.script +++ b/iris.script @@ -15,11 +15,17 @@ do $SYSTEM.OBJ.Load("/home/irisowner/dev/App.Installer.cls", "ck") set sc = ##class(App.Installer).setup() + // Change to working namespace zn "IRISAPP" + // Creates and populates the examples table + Do ##class(%SYSTEM.SQL.Schema).ImportDDL("/home/irisowner/dev/sql/init.sql", "/tmp/log-sql.txt") + // Create /_vscode web app to support intersystems-community.testingmanager VS Code extension zpm "install vscode-per-namespace-settings" + // Sample databases zpm "install samples-aviation" + zpm "install samples-bi" // Configure %UnitTest in IRISAPP to suit the VS Code extension set ^UnitTestRoot="/usr/irissys/.vscode/IRISAPP/UnitTestRoot"