Browse Source

Make a few moves towards getting this to deploy

main
Luke Murphy 4 years ago
parent
commit
4c03ac4499
No known key found for this signature in database GPG Key ID: 5E2EF5A63E3718CC
  1. 2
      README.md
  2. 9
      makefile
  3. 6
      requirements.txt

2
README.md

@ -47,7 +47,7 @@ $ pip install -r requirements.txt
### Run the server ### Run the server
``` ```
$ make serve $ make dev-serve
``` ```
### Layers of the Onion ### Layers of the Onion

9
makefile

@ -1,9 +1,14 @@
ARCHIVE_DIR := ./vocoder/archive PROD_PORT := :9090
PROD_WORKERS := 4
ARCHIVE_DIR := ./vocoder/archive
default: serve default: serve
serve: dev-serve:
@FLASK_ENV=development FLASK_APP=vocoder.server flask run @FLASK_ENV=development FLASK_APP=vocoder.server flask run
clear-archive: clear-archive:
@rm -rf $(ARCHIVE_DIR)/* @rm -rf $(ARCHIVE_DIR)/*
prod-serve:
@gunicorn --workers $(PROD_WORKERS) --bind $(PROD_PORT) vocoder.server:app

6
requirements.txt

@ -1,2 +1,4 @@
Flask==1.1.1 fabric==2.5.0
Flask-Cors==3.0.8 flask-cors==3.0.8
flask==1.1.1
gunicorn==20.0.4

Loading…
Cancel
Save