Database
Database settings are configured in the [database] section of your config.toml file. MediaManager uses PostgreSQL as its database backend.
Database Settings ([database])
[database])hostHostname or IP of the PostgreSQL server. Default islocalhost.portPort number of the PostgreSQL server. Default is5432.userUsername for the PostgreSQL connection. Default isMediaManager.passwordPassword for the PostgreSQL user. Default isMediaManager.dbnameName of the PostgreSQL database. Default isMediaManager.
Example Configuration
Here's a complete example of the database section in your config.toml:
[database]
host = "db"
port = 5432
user = "MediaManager"
password = "your_secure_password"
dbname = "MediaManager"Last updated