Backend
These settings configure the core backend application through the config.toml file. All backend configuration is now centralized in this TOML file instead of environment variables.
General Settings ([misc])
[misc])frontend_urlThe URL the frontend will be accessed from. This is required. Do not include a trailing slash. Default ishttp://localhost:8000.Example: if you are accessing MediaManager at
http://example.com/media, set this tohttp://example.com/media.If you are accessing MediaManager at the root of a domain, e.g.
https://mediamanager.example.com, set this tohttps://mediamanager.example.com.frontend_urldoes not affect where the server binds. It also does not configure a base path prefix. For prefixes, see URL Prefix.cors_urlsA list of origins you are going to access the API from. Do not include trailing slashes.developmentSet totrueto enable development mode. Default isfalse.
Example Configuration
Here's a complete example of the general settings section in your config.toml:
[misc]
# REQUIRED: Change this to match your actual frontend domain.
frontend_url = "http://mediamanager.dev"
cors_urls = ["http://localhost:8000"]
# Optional: Development mode (set to true for debugging)
development = false