14 lines
361 B
Bash
14 lines
361 B
Bash
PORT=3001
|
|
JWT_SECRET=change-this-to-a-random-64-char-string
|
|
ADMIN_USERNAME=admin
|
|
ADMIN_PASSWORD=admin123
|
|
CORS_ORIGIN=http://localhost:5173
|
|
UPLOAD_DIR=./server/uploads
|
|
DATA_DIR=./server/data
|
|
|
|
# Leave unset to auto-use Vite base:
|
|
# local: /api/...
|
|
# prod: /citpl_website/api/...
|
|
# Only set if the API is on a different host than the site.
|
|
# VITE_API_BASE=
|