mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
20 lines
427 B
YAML
20 lines
427 B
YAML
setup:
|
|
addons:
|
|
- plan: heroku-postgresql
|
|
as: DATABASE
|
|
- plan: heroku-redis
|
|
as: REDIS
|
|
config:
|
|
env_file: .env
|
|
build:
|
|
docker:
|
|
plane-frontend: ./apps/app/Dockerfile.web
|
|
plane-backend: ./apiserver/Dockerfile.api
|
|
|
|
release:
|
|
plane-backend: python manage.py migrate
|
|
|
|
run:
|
|
plane-frontend: node apps/app/server.js
|
|
plane-backend: ./apiserver/bin/takeoff
|
|
plane-worker: python manage.py rqworker |