.env.example 299 B

12345678910111213141516
  1. # PostgreSQL
  2. DB_USER=celestia
  3. DB_PASSWORD=replace_with_a_strong_database_password
  4. DB_NAME=celestia_trace
  5. DB_HOST=postgres
  6. DB_PORT=5432
  7. # JWT
  8. JWT_SECRET=your_jwt_secret_here_change_me
  9. ACCESS_TOKEN_TTL=30m
  10. REFRESH_TOKEN_TTL=720h
  11. # Server
  12. SERVER_PORT=8080
  13. GIN_MODE=release
  14. STORAGE_PATH=/data/uploads