0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-24 18:07:17 +01:00
posthog/app.json

69 lines
1.8 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/36f8ad157f42d4d48dc1de1db45802e1/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"
},
"DEPLOYMENT": "Heroku Review App",
2021-09-14 11:43:26 +02:00
"AUTO_LOGIN": true,
"SAML_DISABLED": true
},
"buildpacks": [{ "url": "heroku/nodejs" }, { "url": "heroku/python" }],
"formation": {
"web": {
"quantity": 1
},
"worker": {
"quantity": 1
},
"celeryworker": {
"quantity": 0
},
"pluginworker": {
"quantity": 0
}
}
}
},
"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
}
2020-01-25 00:57:57 +01:00
},
"env": {
"SECRET_KEY": {
"generator": "secret"
},
2021-09-14 11:43:26 +02:00
"DEPLOYMENT": "Heroku",
"SAML_DISABLED": true
}
}