0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-24 09:14:46 +01:00
posthog/app.json
2020-04-07 14:01:33 +02:00

50 lines
1.1 KiB
JSON

{
"name": "PostHog - Product analytics",
"website": "https://www.posthog.com",
"repository": "https://github.com/posthog/posthog",
"logo": "https://posthog.com/wp-content/uploads/2020/02/Group-10.png",
"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",
"heroku-redis"
],
"formation": {
"web": {
"quantity": 1
},
"worker": {
"quantity": 1
}
},
"env": {
"SECRET_KEY": {
"generator": "secret"
}
}
}