summaryrefslogtreecommitdiffstats
path: root/.tmuxinator.yml
blob: 81b056000c4dcf55f436b44ca122996512b97e22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# .tmuxinator.yml

name: dev
root: .

windows:
  - backend:
      - export FLASK_ENV=development
      - export AUTHLIB_INSECURE_TRANSPORT=1
      - export APP_SETTINGS='config.development_secret.Config'
      - cd api
      - flask run
  - workers:
      - export FLASK_ENV=development
      - export AUTHLIB_INSECURE_TRANSPORT=1
      - export APP_SETTINGS='config.development_secret.Config'
      - cd api
      - celery worker -A tasks.celery --loglevel=error
  - frontend:
      - cd front
      - yarn dev