31 lines
516 B
Plaintext
31 lines
516 B
Plaintext
# The name of the application
|
|
# @required
|
|
APP_NAME=MyApp
|
|
|
|
# The environment to run in
|
|
# @type enum:development,staging,production
|
|
# @required
|
|
APP_ENV=development
|
|
|
|
# Port number the server listens on
|
|
# @type number
|
|
PORT=3000
|
|
|
|
# Enable debug logging
|
|
# @type bool
|
|
DEBUG=false
|
|
|
|
# Secret key for signing JWTs
|
|
# @type secret
|
|
# @required
|
|
JWT_SECRET=
|
|
|
|
# Database connection URL
|
|
# @type url
|
|
# @required
|
|
DATABASE_URL=postgres://localhost:5432/myapp
|
|
|
|
# Optional email address for admin notifications
|
|
# @type email
|
|
ADMIN_EMAIL=
|