forked from PostHog/posthog
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
41 lines (41 loc) · 1.02 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
{
"name": "PostHog - Product analytics",
"website": "https://www.posthog.com",
"environments": {
"review": {
"scripts": {
"postdeploy": ""
},
"env": {
"DEBUG": true
},
"buildpacks": [
{"url": "heroku/nodejs"},
{"url": "https://github.com/timgl/heroku-buildpack-python.git"}
]
},
"test": {
"addons": ["heroku-postgresql:in-dyno"],
"scripts": {
"test": "python manage.py test --keepdb -v 2"
},
"buildpacks": [
{"url": "https://github.com/timgl/heroku-buildpack-python.git"}
]
}
},
"buildpacks": [
{"url": "heroku/nodejs"},
{"url": "https://github.com/timgl/heroku-buildpack-python.git"}
],
"addons": [
"heroku-postgresql"
],
"env": {
"SECRET_KEY": {
"generator": "secret"
}
},
"repository": "https://github.com/posthog/posthog",
"logo": "https://posthog.com/wp-content/uploads/elementor/thumbs/Group-9-okswmm1u72v1i0der1e2tk8jeqjrowpdyt4euc6pu6.png"
}