mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 08:40:03 +01:00
49a15e9f53
* Enhance and optimize GitHub workflows * Prettier app.json * Update YAML list * Prettier workflows * Include YAML in prettier runs * Improve job naming * Update E2E workflow name * Prettier docker-compose YAML * Update workflows * Put freezegun into prod requirements * Update workflow names * Update workflow names again * Update ci-backend.yml * Update Lint with flake8 * Remove redundant eslint:ci script * Revert "Put freezegun into prod requirements" This reverts commit 460e3942d10194e9f46c8a2196ebd9ecc1f23c6f. * Install freezegun in workflow and update dev.txt * Prettier auto-image.yml * Add "CI" to ci-* names * Fix prettier:check * Add missing SECRET_KEY * Prettier 2 last files
59 lines
1.6 KiB
JSON
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": ""
|
|
},
|
|
"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"
|
|
}
|
|
}
|
|
}
|