17 lines
477 B
Bash
17 lines
477 B
Bash
DB_PATH=./database
|
|
|
|
# Tests are required to run sequentially so that the database state won't interfere
|
|
# TODO: we don't have tests yet :)
|
|
#RUST_TEST_THREADS=1
|
|
|
|
## Rocket Web Server Configuration ##
|
|
#ROCKET_ADDRESS="localhost"
|
|
#ROCKET_PORT=8000
|
|
#ROCKET_WORKERS=[number of cpus * 2]
|
|
#ROCKET_LOG="normal"
|
|
#ROCKET_SECRET_KEY=[random string, 44 or 88 for base64, 64 for hex]
|
|
#ROCKET_LIMITS="{ forms = 32768 }"
|
|
ROCKET_TEMPLATE_DIR="templates"
|
|
## =============================== ##
|
|
|