10 lines
274 B
Bash
10 lines
274 B
Bash
SERVER_PORT=8080
|
|
|
|
# the global address of your webserver (protocol://domain[:port]). make sure this DOES NOT has a trailing slash
|
|
ADDRESS=http://localhost:8080
|
|
# the path you serve on. must be at least a slash
|
|
Path=/
|
|
|
|
DATABASE_FILE=database.sqlite3
|
|
FRONTEND_DIR=./frontend/
|