-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
54 lines (39 loc) · 1.69 KB
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# database username table. purely cosmetic
USERNAME=username
# configs path inside the container. you shouldn't change this if you do not know what you are doing
HOME=/app/config
# google auth client secret json filename @ HOME
SECRETS_FILENAME=my_client_secrets.json
# Youtube Automanager YaML config filename @ HOME
CONFIG_FILENAME=youtube_automanager.yaml
# Youtube Automanager sqlite database filename @ HOME
DB_FILENAME=youtube_automanager.sqlite
# container webserver port
PORT=443
# container webserver host. you shouldn't change this if you do not know what you are doing
HOST=0.0.0.0
# scopes, separated by comma
SCOPES=https://www.googleapis.com/auth/youtube
# this host and port should point to the container's HOST and PORT
# this url should be added to the verified redirection urls in google api credentials
REDIRECT_URI=https://your_externaly_accessible_hostname:port_redirection/
# logging verbose output. True or False
VERBOSE=False
# save last 10 log files @ HOME/logs
LOGFILES=False
# if you want to receive the authorization url by Telegram:
TELEGRAM_CHAT_ID=your_telegram_chat_id
TELEGRAM_BOT_TOKEN=your_telegram_bot_token
# if you want to receive start, stop and crash messages to Telegram
TELEGRAM_ANNOUNCE=True
# if you want to receive start, stop and crash messages to Discord
DISCORD_WEBHOOK_URL=your_discord_chat_webhook
# if you want to receive start, stop and crash messages to Slack
SLACK_WEBHOOK_URL = your_slack_webhook
SLACK_CHANNEL = your_slack_channel
# comma separated
SLACK_USER_MENTIONS = mention1,mention2
# if you want to receive start, stop and crash messages to Microsoft Teams
TEAMS_WEBHOOK_URL = your_teams_webhook
# comma separated
TEAMS_USER_MENTIONS = mention1,mention2