go to post Dmitry Maslennikov · Mar 3, 2020 The first iris after exec is the service name from docker-compose.yml, then goes command which has to be executed. iris command is a replacement for ccontrol from Cache/Ensemble session - subcommand for iris tool And the latest iris as the instance name inside for IRIS inside the container
go to post Dmitry Maslennikov · Mar 2, 2020 Sounds good. How about to run it on Raspberry PI, is it already a time, to order of some (even now, when it has been recently updated and got a lower price)?
go to post Dmitry Maslennikov · Mar 2, 2020 It's great news, but when it will be available for preview.
go to post Dmitry Maslennikov · Feb 27, 2020 It's great that you trying to do it. But I'm not sure what you actually going to achieve with WebGateway? A provided link has info about running in docker. So, if you just want to activate server-status page in internal apache which goes with IRIS, you should know, that it is not recommended to use internal webserver in production. Some time ago I did an example of Apache with CSPgateway as a docker image. It can be outdated a bit but can be used as an example, how to achieve it. You can easily extend Apache settings there, to allow server-status as well.
go to post Dmitry Maslennikov · Feb 23, 2020 $lb is a binary format, when you try to write it you just outputs everything including special symbols. zwrite command, can do it respectively to format. zzdump can show how it looks in real, it's byte sequence. USER>zw $lb("words","more","words") $lb("words","more","words") USER>zzdump $lb("words","more","words") 0000: 07 01 77 6F 72 64 73 06 01 6D 6F 72 65 07 01 77 ..words..more..w 0010: 6F 72 64 73 ords USER>zzdump $lb(1,2,3,4,5) 0000: 03 04 01 03 04 02 03 04 03 03 04 04 03 04 05 ............... But it is not so important how it looks low-level, as we mostly don't care about it. Developers work with $ListBuild mostly through a bunch of functions, such as $list, $listget, $listnext and so on. You can find more information about $listbuild in the documentation, as well as many examples, and all functions which can be used to work with it.
go to post Dmitry Maslennikov · Feb 20, 2020 How about to just switch to VSCode-ObjectScript, which has such behavior by default?
go to post Dmitry Maslennikov · Feb 13, 2020 I have a working example on GitHub. There you will find, demo configuration, which will start two instances of IRIS in failover mode, and with arbiter.
go to post Dmitry Maslennikov · Feb 12, 2020 So, today, I'm presenting a demo of VSCode-ObjectScript at CUG meetup here in Antwerp
go to post Dmitry Maslennikov · Feb 1, 2020 Hi Roberto, you can look at wiki pages in the repo. Let me know if you find that information not enough for you.
go to post Dmitry Maslennikov · Jan 31, 2020 Hi Max, thanks for the feedback. Actually, there are no way to disable it, yet. Could you fill the enhancement request here?
go to post Dmitry Maslennikov · Jan 28, 2020 Yep, it tries to open terminal automatically when docker-compose option used
go to post Dmitry Maslennikov · Jan 28, 2020 Hi Jose, Interesting, I don't have windows, but as I can see, exit code 2, means The system cannot find the file specified. That's strange when it successfully called docker-compose when looked for a port. You can also try to open an ordinary terminal in VSCode (Menu, View->Terminal), and put full command there, to see how it works.
go to post Dmitry Maslennikov · Jan 26, 2020 Thanks, for sharing this. As an addition, if you have would like to use a different file name from default docker-compose.yml for your configuration, you can set it as well. "objectscript.conn" :{ "ns": "IRISAPP", "active": true, "docker-compose": { "service": "iris", "internalPort": 52773, "file": "docker-compose.yml" } }
go to post Dmitry Maslennikov · Jan 24, 2020 I'm going to Barcelona this year, catch me there if you would like to see VSCode-ObjectScript in action if you would like to discuss new features you want to see there if you face in issues. See you there
go to post Dmitry Maslennikov · Jan 23, 2020 I'm finally going to Antwerp this year. So, you have a chance to meet me there, to see VSCode-ObjectScript in action, get quick help with the migration process, and give your feedback. See you there.
go to post Dmitry Maslennikov · Jan 14, 2020 I've already published a beta version with support for CSP editing, It would be cool, if you could test it and give some feedback.
go to post Dmitry Maslennikov · Jan 13, 2020 A FOR loop pushes a new level onto the stack. A WHILE loop does not change the stack level. Source Working with stack takes time.