forked from SaltieRL/DistributedReplays
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tmuxinator.yml
33 lines (30 loc) · 1.04 KB
/
tmuxinator.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Expects a python 3 virtualenv to be set up and pip requirements to be installed to the virtualenv
# Before running for the first time run these:
# python3 -m pip install --user virtualenv
# python3 -m virtualenv env
# source env/bin/activate
# pip install -r requirements.txt
# deactivate
# cd webapp && npm install && cd ..
name: calculated
windows:
- frontend_api:
layout: even-horizontal
panes:
- webapp:
- cd webapp
- npm start
- rlbot_server:
- source env/bin/activate
- export FLASK_ENV=development
- python RLBotServer.py
- backend:
layout: main-vertical
panes:
- celery:
- source env/bin/activate
- celery -A backend.tasks.celery_tasks.celery worker --pool=solo -l info
- flower:
- source env/bin/activate
- flower --port=5555
- redis/redis-server.exe