You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

default.toml 348 B

2 weeks ago
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