This repository has been archived by the owner on Feb 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.py.example
66 lines (64 loc) · 2 KB
/
config.py.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
55
56
57
58
59
60
61
62
63
64
65
66
SAVE_PATH = '/var/www/spaceapi/status.json'
HTML_PATH = '/var/www/spaceapi/index.html'
TEMPLATE_PATH = '/usr/share/bytespeicher/status_template'
PLUGINS = {
'temperature': {
'urls': [
'http://134.97.126.41/temp_werkstatt.json'
]
},
'status': {
'url': 'http://134.97.126.12/spaceapi.json'
}
}
API_DATA = {
"api": "0.13",
"space": "Bytespeicher",
"logo": "https://pbs.twimg.com/profile_images/378800000769511011/a000ec284ff2e7966373b95aa2054864.jpeg",
"url": "https://bytespeicher.org",
"location": {
"address": "Liebknechtstrasse 8, 99085 Erfurt, Germany",
"lon": 11.03965,
"lat": 50.98271
},
"contact": {
"email": "[email protected]",
"phone": "+493617929903",
"irc": "irc://irc.hackint.eu/bytespeicher",
"twitter": "@bytespeicher_ef",
"facebook": "https://www.facebook.com/Bytespeicher",
"google": {
"plus": "https://plus.google.com/115774236721304179602",
},
"ml": "[email protected]"
},
"issue_report_channels": [
"twitter"
],
"state": {
"icon": {
"open": "http://status.bytespeicher.org/status_open.png",
"closed": "http://status.bytespeicher.org/status_closed.png"
},
"open": None,
"lastchange": 0,
"message": "Status unknown - error while connecting to space",
},
"status": "Status unknown - error while connecting to space",
"open": False,
"icon": {
"open": "http://status.bytespeicher.org/status_open.png",
"closed": "http://status.bytespeicher.org/status_closed.png"
},
"feeds": {
"calendar": {
"type": "ical",
"url": "https://calendar.google.com/calendar/ical/2eskb61g20prl65k2qd01uktis%40group.calendar.google.com/public/basic.ics"
}
},
"sensors": {
"people_now_present": [{
"value": 0
}]
}
}