.env.example 763 B

12345678910111213141516171819202122
  1. # GOGS_TOKEN: Personal access token from your Gogs/Gitea instance
  2. GOGS_TOKEN=your_gogs_token_here
  3. # Database connection (đặt trong docker-compose hoặc .env)
  4. DATABASE_URL=postgres://timelapse:timelapse_dev_password@postgres:5432/timelapse_dev
  5. # Redis connection
  6. REDIS_URL=redis://redis:6379
  7. # JWT secrets — GENERATE NEW VALUES FOR PRODUCTION!
  8. JWT_SECRET=change-this-to-a-long-random-string-in-production
  9. REFRESH_TOKEN_SECRET=change-this-to-another-long-random-string-in-production
  10. # CORS origin (địa chỉ web dashboard)
  11. CORS_ORIGIN=http://localhost:3000
  12. # Google OAuth (tuỳ chọn — bỏ trống nếu không dùng)
  13. GOOGLE_CLIENT_ID=
  14. GOOGLE_CLIENT_SECRET=
  15. GOOGLE_CALLBACK_URL=http://localhost:3001/v1/auth/google/callback
  16. NODE_ENV=development