go to post Evgeny Shvarov · Jun 23, 2020 Thanks, @Klaus Richarz! Ping @Luca Ravazzolo and @Steven LeBlanc on the issues with IRIS Docker image.
go to post Evgeny Shvarov · Jun 19, 2020 Thanks, Lucas! If you have issues with DSW, please submit it here!
go to post Evgeny Shvarov · Jun 19, 2020 Hi Lucas! Could you confirm that DSW export to PDF doesn't work for you here? What do you have as the result with PDF?
go to post Evgeny Shvarov · Jun 18, 2020 In a new 0.2.3 version of ZPM you can return back to the public repository with the following command: zpm:USER>repo -n registry -r -url https://pm.community.intersystems.com
go to post Evgeny Shvarov · Jun 16, 2020 Updated images: And we released images with IRIS 2020.1 and 2020.2 and ZPM 0.2.3. the tags are: intersystemsdc/iris-community:2020.1.0.215.0-zpm intersystemsdc/iris-community:2020.2.0.204.0-zpm intersystemsdc/irishealth-community:2020.1.0.215.0-zpm intersystemsdc/irishealth-community:2020.2.0.204.0-zpm intersystemsdc/iris-aa-community:2020.3.0AA.331.0-zpm And to launch IRIS do: docker run --name my-iris -d --publish 9091:51773 --publish 9092:52773 intersystemsdc/iris-community:2020.1.0.215.0-zpm docker run --name my-iris -d --publish 9091:51773 --publish 9092:52773 intersystemsdc/iris-community:2020.2.0.204.0-zpm docker run --name my-iris -d --publish 9091:51773 --publish 9092:52773 intersystemsdc/irishealth-community:2020.1.0.215.0-zpm docker run --name my-iris -d --publish 9091:51773 --publish 9092:52773 intersystemsdc/irishealth-community:2020.2.0.204.0-zpm docker run --name my-iris -d --publish 9091:51773 --publish 9092:52773 intersystemsdc/iris-aa-community:2020.3.0AA.331.0-zpm And for terminal do: docker exec -it my-iris iris session IRIS and for control panel: http://localhost:9092/csp/sys/UtilHome.csp Happy coding!
go to post Evgeny Shvarov · Jun 11, 2020 Neat! Rob, do you want to publish the sample on Open Exchange?
go to post Evgeny Shvarov · Jun 11, 2020 So this thread is an attempt to agree within the community on the modules naming
go to post Evgeny Shvarov · Jun 11, 2020 1. Sure 2. it’s not a rule, it’s a recommendation. It’s an attempt to answer the question,If you develop the module which will live with other modules, what the name should be to minimize possible package conflicts
go to post Evgeny Shvarov · Jun 9, 2020 Hi Daniel! Another option is to have several SQL commands in a file, e.g. script.sql and run it one by one with: do $System.SQL.DDLImport("IRIS",$Username,"/path/script.sql") Learn more in documentation.
go to post Evgeny Shvarov · Jun 9, 2020 Suppose you have your sql script in script.sql You can call the following command: do $System.SQL.DDLImport("IRIS",$Username,"/path/script.sql") It will execute all the lines one-by-one. Learn more in documentation.
go to post Evgeny Shvarov · Jun 9, 2020 Hi Sabit! Looks interesting! But I see only jar files in the repo. Could you please submit java source files too?
go to post Evgeny Shvarov · Jun 6, 2020 One of the options - don't use USER namespace. Why bother to deal with USER at all? Much more productive and cleaner approach - build your namespace and base from scratch. That's why we create a new IRISAPP namespace and database in every template: e.g. objectscript, rest or ZPM package template. With this infrastructure-as-a-code approach, you know for sure what is the namespace, mappings, security, database, users are in the namespace because it is you who creates it.
go to post Evgeny Shvarov · Jun 5, 2020 Fantastic application, Yuri! For those who is on Mac you also need to change mvnw to executable: chmod +x mvnw
go to post Evgeny Shvarov · Jun 5, 2020 Hi guys! I just want to share with you a few details, that we have this whole week for voting and to let you fix bugs and improve the app, to describe (in articles) and show(in videos) how your application works and why is it cool! And so you do! And if you see sometimes that the number of your votes decreased that means that somebody from votes changed his mind in favor of another participant. Probably because your colleague just has posted an exciting article or submitted the video! To all participants! Thank you very much for your outstanding contributions! The only thing I regret that I can vote only once!
go to post Evgeny Shvarov · Jun 5, 2020 Hi Renato! This is really cool! Could you add the list of available globals in the UI? Just to have the option to get a graph of any other then ^computer global!
go to post Evgeny Shvarov · Jun 5, 2020 On the JSON import: is it possible to import from text.file? And export global to a text file with JSON?
go to post Evgeny Shvarov · Jun 5, 2020 Nice work, Oleh! I tested on my laptop - it indeed imports 1,500 collections from Mongo to IRIS in a few seconds! Neat! I'm curious if the app which works on Mongo can refer to this data in IRIS?