2024-01-21 10:38:05 +01:00
|
|
|
# Path for persistent app data.
|
|
|
|
DATA_DIR = "/data"
|
2024-01-19 11:12:06 +01:00
|
|
|
# Matrix homeserver URL.
|
|
|
|
MATRIX_SERVER = ""
|
|
|
|
# Matrix room to monitor.
|
|
|
|
MATRIX_ROOM = ""
|
|
|
|
# Username for bot's Matrix user.
|
|
|
|
MATRIX_USER = ""
|
|
|
|
# Password for bot's Matrix user.
|
|
|
|
MATRIX_PASSWORD = ""
|
2024-01-19 14:04:18 +01:00
|
|
|
# Title of the playlists created, date of the week's Monday will be appended.
|
2024-01-21 10:38:05 +01:00
|
|
|
YOUTUBE_PLAYLIST_TITLE = ""
|
2024-01-19 14:04:18 +01:00
|
|
|
# YouTube API client secret json path.
|
2024-01-21 10:38:05 +01:00
|
|
|
YOUTUBE_CLIENT_SECRETS_FILE = ""
|