Files
interactive-env/example.env.example

31 lines
516 B
Plaintext
Raw Permalink Normal View History

2026-03-10 00:14:14 -05:00
# 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=