0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-24 18:07:17 +01:00
posthog/app.json
Marius Andra 606525644e
Add deployment environment variables (#2874)
* add deployment env to track instances

* Rename Production ECS

Co-authored-by: Karl-Aksel Puulmann <oxymaccy@gmail.com>
2021-01-11 13:25:40 +01:00

73 lines
1.9 KiB
JSON

{
"name": "PostHog - Product Analytics",
"website": "https://www.posthog.com",
"repository": "https://github.com/posthog/posthog",
"logo": "https://posthog.com/images/36f8ad157f42d4d48dc1de1db45802e1/posthog-icon-color.svg",
"environments": {
"review": {
"scripts": {
"postdeploy": "python manage.py setup_dev"
},
"env": {
"SELF_CAPTURE": true,
"SECRET_KEY": {
"generator": "secret"
},
"DEPLOYMENT": "Heroku Review App"
},
"buildpacks": [{ "url": "heroku/nodejs" }, { "url": "heroku/python" }],
"formation": {
"web": {
"quantity": 1
},
"worker": {
"quantity": 1
},
"celeryworker": {
"quantity": 0
},
"pluginworker": {
"quantity": 0
}
}
},
"test": {
"addons": ["heroku-postgresql:in-dyno"],
"scripts": {
"test": "python manage.py test --keepdb -v 2"
},
"buildpacks": [{ "url": "heroku/python" }]
}
},
"buildpacks": [{ "url": "heroku/nodejs" }, { "url": "heroku/python" }],
"addons": [
"heroku-postgresql",
{
"plan": "heroku-redis",
"options": {
"maxmemory_policy": "allkeys-lru"
}
}
],
"formation": {
"web": {
"quantity": 1
},
"worker": {
"quantity": 1
},
"celeryworker": {
"quantity": 0
},
"pluginworker": {
"quantity": 0
}
},
"env": {
"SECRET_KEY": {
"generator": "secret"
},
"DEPLOYMENT": "Heroku"
}
}