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

59 lines
1.5 KiB
JSON
Raw Normal View History

2020-01-25 00:57:57 +01:00
{
"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_dev"
},
"env": {
2020-10-22 16:04:17 +02:00
"SELF_CAPTURE": true,
"SECRET_KEY": {
"generator": "secret"
}
},
"buildpacks": [{ "url": "heroku/nodejs" }, { "url": "heroku/python" }],
"formation": {
"web": {
"quantity": 1
},
"worker": {
"quantity": 1
}
}
},
"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
}
2020-01-25 00:57:57 +01:00
},
"env": {
"SECRET_KEY": {
"generator": "secret"
}
}
}