-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathapp.json
54 lines (54 loc) · 1.58 KB
/
app.json
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
{
"name": "Django Free Radio",
"description": "A Django project to power an Internet community radio station",
"repository": "https://github.com/iamsteadman/django-freeradio",
"keywords": ["django", "python"],
"image": "heroku/python",
"addons": [
{
"plan": "heroku-postgresql"
},
{
"plan": "heroku-redis"
}
],
"env": {
"DJANGO_SECRET_KEY": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"DJANGO_SETTINGS_MODULE": {
"description": "Django settings module",
"value": "freeradio.settings"
},
"FILEPICKER_API_KEY": {
"filepicker.io API key"
},
"SITE_ID": {
"description": "Django Site ID",
"value": "1"
},
"RADIO_STREAM_URL": {
"description": "Shoutcast stream URL",
"value": "http://uk3.internet-radio.com:11168/stream"
},
"RADIO_NOWPLAYING_URL": {
"description": "Now-playing XML URL",
"value": "https://control.internet-radio.com:2199/external/rpc.php?m=streaminfo.get&username=brumradio&charset=&mountpoint=&rid=brumradio"
},
"MIXCLOUD_USERNAME": {
"description": "MixCloud username",
"value": "brumradio"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
},
"worker": {
"quantity": 1,
"size": "free"
}
}
}