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:
commit
9911895b5b
22 changed files with 4790 additions and 0 deletions
13
Rocket.toml
Normal file
13
Rocket.toml
Normal 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"
|
Loading…
Add table
Add a link
Reference in a new issue