18 lines
693 B
Bash
18 lines
693 B
Bash
# Loaded automatically at startup via dotenv (`import 'dotenv/config'`),
|
|
# so `npm start` and `npm run seed` read these without a process manager.
|
|
# Newbury Nights configuration
|
|
|
|
# Port the Node/Express app listens on (nginx terminates HTTPS in front of this).
|
|
PORT=33033
|
|
|
|
# Secret used to sign JWTs. CHANGE THIS to a long random string in production.
|
|
JWT_SECRET=change-me-to-a-long-random-string
|
|
|
|
# Admin bootstrap credentials. On first `npm run seed`, an admin user is created
|
|
# with these values if no admin exists yet. Change the password after first login.
|
|
ADMIN_USER=admin
|
|
ADMIN_PASS=changeme
|
|
|
|
# Where uploaded ghost GIFs/images are stored (relative to project root).
|
|
UPLOAD_DIR=uploads
|