| 123456789101112131415161718192021222324252627 |
- # Database
- DATABASE_URL=postgres://timelapse:timelapse_dev_password@localhost:5432/timelapse_dev
- # Redis
- REDIS_URL=redis://localhost:6379
- # Auth
- JWT_SECRET=change-this-to-a-long-random-string-in-production
- REFRESH_TOKEN_SECRET=change-this-to-another-long-random-string-in-production
- # CORS
- CORS_ORIGIN=http://localhost:3000
- # Google OAuth (optional)
- GOOGLE_CLIENT_ID=
- GOOGLE_CLIENT_SECRET=
- GOOGLE_CALLBACK_URL=http://localhost:3001/v1/auth/google/callback
- # S3 / Object Storage (optional)
- AWS_ACCESS_KEY_ID=
- AWS_SECRET_ACCESS_KEY=
- AWS_REGION=ap-southeast-1
- S3_BUCKET=
- # API Server
- PORT=3001
- NODE_ENV=development
|