Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

2 недель назад
12345678910111213141516
  1. # Default configuration — values here are overridden by environment-specific
  2. # files (development.toml, production.toml) and then by environment variables.
  3. [server]
  4. host = "0.0.0.0"
  5. port = 8080
  6. [logging]
  7. level = "info"
  8. [database]
  9. url = "postgres://localhost/axum_api"
  10. [auth]
  11. jwt_secret = "change-me-in-production"
  12. token_expiry_seconds = 3600