25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.env.example 1.5 KiB

1234567891011121314151617181920
  1. # Copy this file to .env and fill in real values.
  2. # Never commit .env to version control.
  3. # ── Environment ───────────────────────────────────────────────────────────────
  4. APP_ENV=development # development | staging | production
  5. # ── Server ────────────────────────────────────────────────────────────────────
  6. APP__SERVER__HOST=0.0.0.0
  7. APP__SERVER__PORT=8080
  8. # ── Logging ───────────────────────────────────────────────────────────────────
  9. # Any valid tracing EnvFilter directive.
  10. RUST_LOG=axum_api_template=debug,tower_http=debug
  11. # ── Database ──────────────────────────────────────────────────────────────────
  12. APP__DATABASE__URL=postgres://user:password@localhost:5432/axum_api
  13. # ── Auth ──────────────────────────────────────────────────────────────────────
  14. APP__AUTH__JWT_SECRET=change-me-to-a-long-random-string
  15. APP__AUTH__TOKEN_EXPIRY_SECONDS=3600