mirror of
https://github.com/hrfee/jfa-go.git
synced 2024-11-05 09:50:11 +00:00
Harvey Tindall
92332206f0
If enabled, jfa-go pings buildrone (hosted at builds.hrfee.pw) every 30 min for new updates. If there is one, it gets information (and if applicable, a binary) from the appropriate source (buildrone, github, or dockerhub) and displays it on the admin page. You can switch update channels between stable and unstable. For binary releases, updates are downloaded automatically and installed when the user presses update. Since this obviously introduces some "phone-home" functionality into jfa-go, I just want to say IPs are not and will not be logged by buildrone, although I may later introduce functionality to give a rough idea of the number of users (again, no IPs stored). The whole thing can also be turned off in settings. |
||
---|---|---|
.. | ||
config-base.json | ||
configStruct.go | ||
README.md |
fixconfig
Python's json
library retains the order of data in a JSON file, which meant settings sent to the web page would be in the right order. Go's encoding/json
and maps do not retain order, so this script opens the json file, and for each section, adds an "order" list which tells the web page in which order to display settings.
Specify the input and output files with -i
and -o
respectively.
jsontostruct
Generates a go struct from config-base.json
. I wrote this because i was annoyed with the ini
library, but i've since realised mapping the ini values onto it is painful.