From 09dacec88c063900cd8ee5911b357fce9e8e0241 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20R=C3=A4tzel?= Date: Wed, 21 Jun 2023 12:59:45 +0000 Subject: [PATCH] Update guide to latest version --- implement/alternate-ui/readme.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/implement/alternate-ui/readme.md b/implement/alternate-ui/readme.md index 60b458c..3daa3cc 100644 --- a/implement/alternate-ui/readme.md +++ b/implement/alternate-ui/readme.md @@ -37,7 +37,7 @@ Developers use the parsing library to make ratting, mining, and mission running These instructions to run the alternate UI start with the program source code. Here we use a tool called `elm-time` to compile the program from source code and run it as a web server. -Download the zip archive from and extract it. +Download the zip archive from and extract it. The extracted files contain the `elm-time` tool used to run Elm programs. @@ -49,7 +49,7 @@ To start the software: + In the next command, we use the `elm-time.exe` file we got from the zip archive in the setup section. Below is an example of the complete command; you only need to replace the file path to the executable file: ```PowerShell -."C:\replace-this-the-path-on-your-system\elm-time.exe" run-server --public-urls="http://*:80" --deploy=https://github.com/Arcitectus/Sanderling/tree/91f518cb1e0851b1423d0e0ecbd34234c454f1dc/implement/alternate-ui/source +."C:\replace-this-the-path-on-your-system\elm-time.exe" run-server --public-urls="http://*:80" --deploy=https://github.com/Arcitectus/Sanderling/tree/dd6ca58e26a217e79261e0d6f2f597804f5b558a/implement/alternate-ui/source ``` + The command starts a web server and the shell window will display an output like this: @@ -58,26 +58,26 @@ To start the software: I got no path to a persistent store for the process. This process will not be persisted! Loading app config to deploy... This path looks like a URL into a remote git repository. Trying to load from there... -This path points to commit 68fa533f867609738aa0b5f77e43787dccbec9fb -Loaded source composition 2ac0acd4df6ca3eb16a7ca8c18061bb04fa9a7c66f56d69c9d5342787b806deb from 'https://github.com/Arcitectus/Sanderling/tree/68fa533f867609738aa0b5f77e43787dccbec9fb/implement/alternate-ui/source'. -Starting the web server with the admin interface... -info: ElmTime.Platform.WebServer.StartupAdminInterface[0] +This path points to commit dd6ca58e26a217e79261e0d6f2f597804f5b558a +Loaded source composition 575233c29caee8611794fd8306a4d341a3e911315b5b844cb78b326e3676b349 from 'https://github.com/Arcitectus/Sanderling/tree/dd6ca58e26a217e79261e0d6f2f597804f5b558a/implement/alternate-ui/source'. +Starting web server with admin interface (using engine JavaScript_V8)... +info: ElmTime.Platform.WebService.StartupAdminInterface[0] Begin to build the process live representation. -info: ElmTime.Platform.WebServer.StartupAdminInterface[0] +info: ElmTime.Platform.WebService.StartupAdminInterface[0] Begin to restore the process state. -info: ElmTime.Platform.WebServer.StartupAdminInterface[0] +info: ElmTime.Platform.WebService.StartupAdminInterface[0] Found 1 composition log records to use for restore. -info: ElmTime.Platform.WebServer.StartupAdminInterface[0] +info: ElmTime.Platform.WebService.StartupAdminInterface[0] Restored the process state in 0 seconds. -info: ElmTime.Platform.WebServer.StartupAdminInterface[0] +info: ElmTime.Platform.WebService.StartupAdminInterface[0] Completed building the process live representation. -info: ElmTime.Platform.WebServer.PublicAppState[0] +info: ElmTime.Platform.WebService.PublicAppState[0] I did not find 'letsEncryptOptions' in the configuration. I continue without Let's Encrypt. info: Microsoft.Hosting.Lifetime[14] Now listening on: http://[::]:80 info: Microsoft.Hosting.Lifetime[0] Application started. Press Ctrl+C to shut down. -info: ElmTime.Platform.WebServer.StartupAdminInterface[0] +info: ElmTime.Platform.WebService.StartupAdminInterface[0] Started the public app at 'http://*:80'. Completed starting the web server with the admin interface at 'http://*:4000'. ```