Files
Bat/src/main/resources/application.yml
2024-07-04 07:01:46 +01:00

53 lines
1.3 KiB
YAML

# Spring Configuration
spring:
data:
# MongoDB Configuration
mongodb:
uri: "mongodb://bat:p4$$w0rd@localhost:27017"
database: "bat"
auto-index-creation: true # Automatically create collection indexes
# Redis - This is used for caching
redis:
host: "localhost"
port: 6379
database: 0
auth: "" # Leave blank for no auth
# Discord Configuration
discord:
token: "oh my goodnesssssssssss"
# Bat Configuration
bat:
# This is where commands will be registered (whilst in development mode)
# also where bot owner only commands will be registered
admin-guild: set me
# This is the guild where the bot will log errors and other information
logs-channel: set me
# Sentry Configuration
sentry:
dsn: "CHANGE_ME"
tracesSampleRate: 1.0
environment: "development"
# Spotify Configuration
spotify:
redirect-uri: "http://localhost:8080/spotify/callback"
client-id: "spotify-client-id"
client-secret: "spotify-client-secret"
# TMDB Configuration
tmdb:
# API Read Access Token
api-key: "api-read-access-token"
# DO NOT TOUCH BELOW (unless you know what you're doing, ofc!)
# MongoDB Migration Configuration
mongock:
runner-type: InitializingBean
migration-scan-package:
- "cc.fascinated.bat.changelog"