Skip to main content
Version: 0.1.0

Configuration

Main config file (config.json)

keydescriptiondefault value
backendPortThe port for the backend1020
frontendPortThe port for the frontend (currently doesn't change anything)3000
clientIdThe clientID of your Discord app
clientSecretThe client secret of your Discord app
redirectUriThe redirect URI you use, must redirect to "http(s)://yourdomain:frontendport/login""http://localhost:3000/login"
authLinkGenerate an authlink, make sure to give it identify permission
tokenThe token of your Discord bot
versionDo not edit; currently there is no use for this, make sure it is in the config."0.1.0"

Example file:

config.json
{
"backendPort": 1020,
"frontendPort": 3000,
"clientId": "",
"clientSecret": "",
"redirectUri": "http://localhost:3000/login",
"authLink": "",
"token": "",
"version": "0.1.0"
}