-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
127 lines (127 loc) · 3.13 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "Barberscore API",
"description": "Scoring and Contest API for the Barbershop Harmony Society",
"logo": "https://res.cloudinary.com/barberscore/image/upload/v1554830585/bhs_logo.png",
"repository": "https://github.com/barberscore/barberscore-api",
"stack": "heroku-18",
"success_url": "/admin/",
"buildpacks": [
{
"url": "heroku/python"
}
],
"formation": {
"web": {
"quantity": "1",
"size": "hobby"
},
"worker": {
"quantity": "1",
"size": "hobby"
}
},
"addons": [
"heroku-redis:hobby-dev",
"heroku-postgresql:hobby-basic"
],
"env": {
"ALGOLIASEARCH_API_KEY": {
"description": "Algolia API key.",
"required": true
},
"ALGOLIASEARCH_API_KEY_SEARCH": {
"description": "Algolia Search key.",
"required": true
},
"ALGOLIASEARCH_APPLICATION_ID": {
"description": "Algolia Application ID key.",
"required": true
},
"ALGOLIASEARCH_AUTO_INDEXING": {
"description": "Algolia API key.",
"value": false,
"required": true
},
"AUTH0_AUDIENCE": {
"description": "Auth0 API audience.",
"required": true
},
"AUTH0_CLIENT_ID": {
"description": "Auth0 Client id.",
"required": true
},
"AUTH0_CLIENT_SECRET": {
"description": "Auth0 Client secret.",
"required": true
},
"AUTH0_DOMAIN": {
"description": "Auth0 API endpoint.",
"required": true
},
"BHS_DATABASE_URL": {
"description": "BHS Database.",
"required": true
},
"CLOUDINARY_URL": {
"description": "Cloudinary service.",
"required": true
},
"SENTRY_DSN": {
"description": "Sentry Bug Tracker. Use production key.",
"required": true
},
"ENV": {
"description": "The Environment.",
"value": "staging",
"required": true
},
"REDIS_MAX_CONNECTIONS": {
"description": "Maximum Redis connections.",
"value": "40",
"required": true
},
"DJANGO_SETTINGS_MODULE": {
"description": "Configures the settings. Do not edit.",
"value": "settings.dev",
"required": true
},
"PYTHONPATH": {
"description": "Pythonpath. Do not edit.",
"value": "project",
"required": true
},
"SECRET_KEY": {
"description": "Required by Django. Auto-generated.",
"generator": "secret",
"required": true
}
},
"environments": {
"test": {
"addons": [
"heroku-postgresql:in-dyno",
"heroku-redis:in-dyno"
],
"env": {
"DJANGO_SETTINGS_MODULE": "settings.base",
"PYTHONPATH": "project",
"SECRET_KEY": {
"generator": "secret"
},
"REDIS_MAX_CONNECTIONS": "40",
"CLOUDINARY_URL": "test",
"ALGOLIASEARCH_APPLICATION_ID": "test",
"ALGOLIASEARCH_API_KEY": "test",
"ALGOLIASEARCH_AUTO_INDEXING": "test",
"AUTH0_CLIENT_ID": "test",
"AUTH0_CLIENT_SECRET": "test",
"AUTH0_DOMAIN": "test",
"AUTH0_AUDIENCE": "test"
},
"stack": "heroku-18",
"scripts": {
"test": "pytest"
}
}
}
}