Bat/src/main/resources/application.yml

43 lines
1.0 KiB
YAML
Raw Normal View History

2024-06-28 02:01:21 +00:00
# Discord Configuration
2024-06-23 20:37:24 +00:00
discord:
token: "oh my goodnesssssssssss"
2024-07-01 21:56:52 +00:00
# Bat Configuration
bat:
2024-07-01 22:02:28 +00:00
# This is where commands will be registered (whilst in development mode)
# also where bot owner only commands will be registered
2024-07-01 21:56:52 +00:00
admin-guild: 1203163422498361404
# Sentry Configuration
sentry:
dsn: "CHANGE_ME"
tracesSampleRate: 1.0
environment: "development"
2024-06-30 00:03:10 +00:00
# MongoDB Migration Configuration
mongock:
2024-06-30 01:36:17 +00:00
runner-type: InitializingBean
migration-scan-package:
- "cc.fascinated.bat.changelog"
2024-06-30 00:03:10 +00:00
2024-06-28 02:01:21 +00:00
# Spotify Configuration
spotify:
2024-06-28 02:05:36 +00:00
redirect-uri: "http://localhost:8080/spotify/callback"
2024-06-28 02:01:21 +00:00
client-id: "spotify-client-id"
client-secret: "spotify-client-secret"
2024-06-23 20:37:24 +00:00
# Spring Configuration
spring:
data:
# MongoDB Configuration
mongodb:
uri: "mongodb://bat:p4$$w0rd@localhost:27017"
2024-06-24 14:45:53 +00:00
database: "bat"
2024-07-01 20:20:39 +00:00
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