Something something like soundcloud but not like soundcloud.
Log in, upload records, done.
Simple, easy, KISS.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# .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
|
|
|