Change spring_user
database password:
ALTER USER spring_user WITH PASSWORD '<new_password>';
-
Create a new application on Discord Developer Portal.
Bot
settings.- Add a bot and customise it.
- Save the authentication token.
OAuth2
settings.- Add a redirect at
http://localhost:5000
. - Choose the newly added redirect URL in the
OAuth2 URL Generator
section. - In
scopes
section, tickbot
. - In
bot permissions
section, tickAdministrator
, or choose more granular permissions. - Copy the invitation URL from the bottom of the
scopes
section and navigate to it in the browser. Sign in to a relevant Discord account and add the bot to a server.
- Add a redirect at
-
Once the application's database has been provisioned, update the
DISCORD_AUTH_TOKEN
row to the authentication token.UPDATE CONFIG SET VALUE = '<auth_token>' WHERE NAME = 'DISCORD_AUTH_TOKEN';
Add CONTAINER_REGISTRY_TOKEN
secret to the repository to be able to sign into
container registry. Read more on this in GitHub's
documentation.