v1.0: First production version

This first version allows login of pre-existing users, creation and update of truths
by admins, vote on the truths by users, their display as well as a simple graph
for the vote results.
Everything persisting in a SQLite database.
This commit is contained in:
trotFunky 2024-07-23 21:51:42 +01:00
commit 9911895b5b
22 changed files with 4790 additions and 0 deletions

13
Rocket.toml Normal file
View file

@ -0,0 +1,13 @@
[default]
template_dir = "templates"
log_level = "normal"
port = 24241
[debug]
address = "0.0.0.0"
[release]
address = "127.0.0.1"
[default.databases.data_sqlite]
url = "./db/voting_data.sqlite"