summaryrefslogtreecommitdiffstats
path: root/.tmuxinator.yml
blob: 6a51b4a7f033e62b8950ae8cc9f578bbbb7c8d8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# .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
      - source ../venv/bin/activate
      - flask run
  - workers:
      - export FLASK_ENV=development
      - export AUTHLIB_INSECURE_TRANSPORT=1
      - export APP_SETTINGS='config.development_secret.Config'
      - cd api
      - source ../venv/bin/activate
      - celery -A tasks.celery worker --loglevel=error
  - frontend:
      - cd front
      - yarn dev