Some checks failed
CI / Lint & Typecheck (push) Has been cancelled
CI / Test (routes) (push) Has been cancelled
CI / Test (security) (push) Has been cancelled
CI / Test (services) (push) Has been cancelled
CI / Test (unit) (push) Has been cancelled
CI / Test (integration) (push) Has been cancelled
CI / Test Coverage (push) Has been cancelled
CI / Build (push) Has been cancelled
22 lines
494 B
Plaintext
22 lines
494 B
Plaintext
# Database
|
|
DATABASE_URL=postgres://tracearr:tracearr@localhost:5432/tracearr
|
|
|
|
# Redis
|
|
REDIS_URL=redis://localhost:6379
|
|
|
|
# Server
|
|
PORT=3000
|
|
HOST=0.0.0.0
|
|
NODE_ENV=development
|
|
LOG_LEVEL=debug
|
|
|
|
# Auth - CHANGE THESE IN PRODUCTION!
|
|
JWT_SECRET=your-secret-key-change-in-production
|
|
COOKIE_SECRET=your-cookie-secret-change-in-production
|
|
|
|
# CORS (frontend URL)
|
|
CORS_ORIGIN=http://localhost:5173
|
|
|
|
# Mobile beta testing mode - enables reusable tokens, no expiry, unlimited devices
|
|
# MOBILE_BETA_MODE=true
|