12 lines
306 B
Bash
12 lines
306 B
Bash
# Copy to .env and adjust as needed. Real environment variables win over
|
|
# values in this file.
|
|
|
|
# Directory holding the SQLite database (created if missing).
|
|
DATA_DIR=data
|
|
|
|
# HTTP port for the server.
|
|
PORT=8080
|
|
|
|
# Built frontend to serve. Leave as-is unless you move the build output.
|
|
STATIC_DIR=web/dist
|