You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 22, 2025. It is now read-only.
Currently, both .env entries and locations.json are compiled into the program or container image.
Consequently, each installation must perform a separate compilation, and the compiled program or container image cannot be reused.
It's desirable to separate the runtime parameters out of the compiled program or container image.
Instead, the server side program reads .env and locations.json, and exposes their contents either as an HTTP endpoint that is retrieved via Fetch API, or as an embedded <script> tag on the frontpage.
This would allow the compiled program or container image to be copied between different machines without re-compiling.
Furthermore, it would enable the creation of an official Docker image of this project.