Location: backend/config/default.json
Property | Description |
---|---|
mode |
Should be either development or production . |
migration |
Should be set to true if you need to update MongoDB documents to a newer version after an update. Should be false at all other times. |
secret |
Set to something unique and secure - used by express's session module. |
domain |
Should be the url where the site will be accessible from, usually http://localhost for non-Docker. |
serverDomain |
Should be the url where the backend will be accessible from, usually http://localhost/backend for docker or http://localhost:8080 for non-Docker. |
serverPort |
Should be the port where the backend will listen on, should always be 8080 for Docker, and is recommended for non-Docker. |
registrationDisabled |
If set to true, users can't register accounts. |
sendDataRequestEmails |
If true all admin users will be sent an email if a data request is received. |
apis.youtube.key |
YouTube Data API v3 key, obtained from here. |
apis.youtube.rateLimit |
Minimum interval between YouTube API requests in milliseconds. |
apis.youtube.requestTimeout |
YouTube API requests timeout in milliseconds. |
apis.youtube.retryAmount |
The amount of retries to perform of a failed YouTube API request. |
apis.youtube.quotas |
Array of YouTube API quotas. |
apis.youtube.quotas.type |
YouTube API quota type, should be one of QUERIES_PER_DAY , QUERIES_PER_MINUTE or QUERIES_PER_100_SECONDS . |
apis.youtube.quotas.title |
YouTube API quota title. |
apis.youtube.quotas.limit |
YouTube API quota limit. |
apis.recaptcha.secret |
ReCaptcha Site v3 secret, obtained from here. |
apis.recaptcha.enabled |
Whether to enable ReCaptcha at email registration. |
apis.github.enabled |
Whether to enable GitHub authentication. |
apis.github.client |
GitHub OAuth Application client, obtained from here. |
apis.github.secret |
GitHub OAuth Application secret, obtained with client. |
apis.github.redirect_uri |
The authorization callback url is the backend url with /auth/github/authorize/callback appended, for example http://localhost/backend/auth/github/authorize/callback . |
apis.discogs.client |
Discogs Application client, obtained from here. |
apis.discogs.secret |
Discogs Application secret, obtained with client. |
apis.discogs.enabled |
Whether to enable Discogs API usage. |
cors.origin |
Array of allowed request origin urls, for example http://localhost . |
smtp.host |
SMTP Host |
smtp.port |
SMTP Port |
smtp.auth.user |
SMTP Username |
smtp.auth.pass |
SMTP Password |
smtp.secure |
Whether SMTP is secured. |
smtp.enabled |
Whether SMTP and sending emails is enabled. |
mail.from |
The from field for mails sent from backend. |
redis.url |
Should be left as default for Docker installations, else changed to redis://localhost:6379/0 . |
redis.password |
Redis password. |
mongo.url |
For Docker replace temporary MongoDB musare user password with one specified in .env , and for non-Docker replace @musare:27017 with @localhost:27017 . |
cookie.domain |
The ip or address you use to access the site, without protocols (http/https), so for example localhost . |
cookie.secure |
Should be true for SSL connections, and false for normal http connections. |
cookie.SIDname |
Name of the cookie stored for sessions. |
blacklistedCommunityStationNames |
Array of blacklisted community station names. |
featuredPlaylists |
Array of featured playlist id's. Playlist privacy must be public. |
skipConfigVersionCheck |
Skips checking if the config version is outdated or not. Should almost always be set to false. |
skipDbDocumentsVersionCheck |
Skips checking if there are any DB documents outdated or not. Should almost always be set to false. |
debug.stationIssue |
If set to true it will enable the /debug_station API endpoint on the backend, which provides information useful to debugging stations not skipping, as well as capure all jobs specified in debug.captureJobs . |
debug.traceUnhandledPromises |
Enables the trace-unhandled package, which provides detailed information when a promise is unhandled. |
debug.captureJobs |
Array of jobs to capture for debug.stationIssue . |
defaultLogging.hideType |
Filters out specified message types from log, for example INFO , SUCCESS , ERROR and STATION_ISSUE . |
defaultLogging.blacklistedTerms |
Filters out messages containing specified terms from log, for example success . |
customLoggingPerModule.[module].hideType |
Where [module] is a module name specify hideType as you would defaultLogging.hideType to overwrite default. |
customLoggingPerModule.[module].blacklistedTerms |
Where [module] is a module name specify blacklistedTerms as you would defaultLogging.blacklistedTerms to overwrite default. |
configVersion |
Version of the config. Every time the template changes, you should change your config accordingly and update the configVersion. |
experimental.weight_stations |
Experimental option to use weights when autofilling stations, looking at the weight[X] tag for songs. If true, enables for all stations using default tag name. If an object, key msut b station id's, and if true enables for those stations with default weight tag name, or you can specify an alternative tag name by setting the value to a string. |
experimental.weight_stations |
Experimental option to use weights when autofilling stations, looking at the weight[X] tag for songs. Must be an object, key must be station id's, value can be true or a string. If true, it uses tag name weight . If a string, it uses that string as the tag name. |
experimental.queue_autofill_skip_last_x_played |
Experimental option to not autofill songs that were played recently. Must be an object, key must be station id's, value must be a number. The number equals how many songs it will consider recent and use when checking if it can autofill. |
experimental.queue_add_before_autofilled |
Experimental option to have requested songs in queue appear before autofilled songs, based on the autofill number. Must be true or an object. If true, it's enabled for all stations. If an object, key must be station id's, value must be true to enable for that station. |
experimental.disable_youtube_search |
Experimental option to disable YouTube search on the backend. If true, this option is enabled. |
Location: frontend/dist/config/default.json
Property | Description |
---|---|
mode |
Should be either development or production . |
backend.apiDomain |
Should be the url where the backend will be accessible from, usually http://localhost/backend for docker or http://localhost:8080 for non-Docker. |
backend.websocketsDomain |
Should be the same as the apiDomain , except using the ws:// protocol instead of http:// and with /ws at the end. |
devServer.hmrClientPort |
Should be the port on which the frontend will be accessible from, usually port 80 , or 443 if using SSL. Only used when running in dev mode. |
devServer.port |
Should be the port where Vite's dev server will be accessible from, should always be port 81 for Docker since nginx listens on port 80, and is recommended to be port 80 for non-Docker. Only used when running in dev mode. |
frontendDomain |
Should be the url where the frontend will be accessible from, usually http://localhost for docker or http://localhost:80 for non-Docker. |
recaptcha.key |
ReCaptcha Site v3 key, obtained from here. |
recaptcha.enabled |
Whether to enable ReCaptcha at email registration. |
cookie.domain |
Should be the ip or address you use to access the site, without protocols (http/https), so for example localhost . |
cookie.secure |
Should be true for SSL connections, and false for normal http connections. |
cookie.SIDname |
Name of the cookie stored for sessions. |
siteSettings.logo_white |
Path to the white logo image, by default it is /assets/white_wordmark.png . |
siteSettings.logo_blue |
Path to the blue logo image, by default it is /assets/blue_wordmark.png . |
siteSettings.logo_small |
Path to the small white logo image, by default it is /assets/favicon/mstile-144x144.png . |
siteSettings.sitename |
Should be the name of the site. |
siteSettings.footerLinks |
Add custom links to footer by specifying "title": "url" , e.g. "GitHub": "https://github.com/Musare/Musare" . You can disable about, team and news links (but not the pages themselves) by setting them to false, e.g. "about": false . |
siteSettings.christmas |
Whether to enable christmas theming. |
siteSettings.registrationDisabled |
If set to true, users can't register accounts. |
messages.accountRemoval |
Message to return to users on account removal. |
shortcutOverrides |
Overwrite keyboard shortcuts, for example "editSong.useAllDiscogs": { "keyCode": 68, "ctrl": true, "alt": true, "shift": false, "preventDefault": true } . |
debug.git.remote |
Allow the website/users to view the current Git repository's remote. [^1] |
debug.git.remoteUrl |
Allow the website/users to view the current Git repository's remote URL. [^1] |
debug.git.branch |
Allow the website/users to view the current Git repository's branch. [^1] |
debug.git.latestCommit |
Allow the website/users to view the current Git repository's latest commit hash. [^1] |
debug.git.latestCommitShort |
Allow the website/users to view the current Git repository's latest commit hash (short). [^1] |
debug.version |
Allow the website/users to view the current package.json version. [^1] |
skipConfigVersionCheck |
Skips checking if the config version is outdated or not. Should almost always be set to false. |
configVersion |
Version of the config. Every time the template changes, you should change your config accordingly and update the configVersion. |
experimental.changable_listen_mode |
Experimental option to allows users on stations to close the player. If true, enables for all stations. If an array of station id's, enable for just those stations. |
experimental.disable_youtube_search |
Experimental option to disable YouTube search on the frontend. If true, this option is enabled. |
experimental.media_session |
Experimental option to enable media session functionality. |
[^1]: Requires a frontend restart to update. The data will be available from the frontend console and by the frontend code.
Location: .env
In the table below the container host refers to the IP address that the docker
container listens on, setting this to 127.0.0.1
for example will only expose
the configured port to localhost, whereas setting to 0.0.0.0
will expose the
port on all interfaces.
The container port refers to the external docker container port, used to access
services within the container. Changing this does not require any changes to
configuration within container. For example setting the MONGO_PORT
to 21018
will allow you to access the mongo service through that port, even though the
application within the container is listening on 21017
.
Property | Description |
---|---|
COMPOSE_PROJECT_NAME |
Should be a unique name for this installation, especially if you have multiple instances of Musare on the same machine. |
RESTART_POLICY |
Restart policy for docker containers, values can be found here. |
CONTAINER_MODE |
Should be either prod or dev . |
DOCKER_COMMAND |
Should be either docker or podman . |
BACKEND_HOST |
Backend container host. |
BACKEND_PORT |
Backend container port. |
FRONTEND_HOST |
Frontend container host. |
FRONTEND_PORT |
Frontend container port. |
FRONTEND_MODE |
Should be either prod or dev . |
MONGO_HOST |
Mongo container host. |
MONGO_PORT |
Mongo container port. |
MONGO_ROOT_PASSWORD |
Password of the root/admin user for MongoDB. |
MONGO_USER_USERNAME |
Application username for MongoDB. |
MONGO_USER_PASSWORD |
Application password for MongoDB. |
MONGO_DATA_LOCATION |
The location where MongoDB stores its data. Usually the .db folder inside the Musare folder. |
MONGO_VERSION |
The MongoDB version to use for scripts and docker-compose. Must be numerical. Currently supported MongoDB versions are 4.0+. Always backup before changing this value. |
REDIS_HOST |
Redis container host. |
REDIS_PORT |
Redis container port. |
REDIS_PASSWORD |
Redis password. |
REDIS_DATA_LOCATION |
The location where Redis stores its data. Usually the .redis folder inside the Musare folder. |
BACKUP_LOCATION |
Directory to store musare.sh backups. Defaults to /backups in script location. |
BACKUP_NAME |
Name of musare.sh backup files. Defaults to musare-$(date +"%Y-%m-%d-%s").dump . |
You may want to override the docker-compose files in some specific cases.
For this, you can create a docker-compose.override.yml
file.
One example usecase for the override is to expose the backend port so you can run it separately from the frontend. An example file for this is as follows:
services:
backend:
ports:
- "${BACKEND_HOST}:${BACKEND_PORT}:8080"
This assumes that you have also set BACKEND_PORT
inside your .env
file.