-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsecrets.py
More file actions
54 lines (43 loc) · 876 Bytes
/
secrets.py
File metadata and controls
54 lines (43 loc) · 876 Bytes
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
"""
SANITIZED VERSION. FILL WITH YOUR OWN DATA!!!
File used to set environment variables including tokens and passwords.
"""
ENVIRONMENT = "Production"
#ENVIRONMENT = "Test"
if ENVIRONMENT == "Production":
# General
NAS_IP = "192.168.1.1"
ADDRESS_BOOK = {
'192.168.1.101' : '',
}
# Telegram
Telegram = {
"token" : ":",
"chat_id" : "",
}
# Meteoserver
Meteoserver = {
"url" : "",
"token" : "",
"town" : "",
}
# qBittorrent
qBittorrent = {
"ip" : NAS_IP,
"port" : "",
}
# Synology surveillance station
SurvStation = {
"login" : "",
"password" : "",
"ip" : NAS_IP,
"port" : "5001",
}
# Gandi
Gandi = {
"token" : "",
}
def main():
pass
if __name__ == "__main__":
main()