0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-22 17:24:15 +01:00
posthog/app.json
Tim Glaser 1acdf79294
Automatically set up user account (#1496)
* Automatically set up user account

* skip onboarding flow

* Add defaults
2020-08-27 14:58:51 +02:00

59 lines
1.6 KiB
JSON

{
"name": "PostHog - Product Analytics",
"website": "https://www.posthog.com",
"repository": "https://github.com/posthog/posthog",
"logo": "https://posthog.com/images/98771d009c04ff64fc4ba3b31cc46fe8/posthog-icon-color.svg",
"environments": {
"review": {
"scripts": {
"postdeploy": "python manage.py setup_review"
},
"env": {
"DEBUG": true
},
"buildpacks": [
{ "url": "heroku/nodejs" },
{ "url": "https://github.com/timgl/heroku-buildpack-python.git" }
],
"formation": {
"web": {
"quantity": 1
},
"worker": {
"quantity": 1
}
}
},
"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",
{
"plan": "heroku-redis",
"options": {
"maxmemory_policy": "allkeys-lru"
}
}
],
"formation": {
"web": {
"quantity": 1
},
"worker": {
"quantity": 1
}
},
"env": {
"SECRET_KEY": {
"generator": "secret"
}
}
}