An online landscape, built as a tool to explore the many aspects of the human voice.
https://voicegardens.org
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.
14 lines
296 B
14 lines
296 B
PROD_PORT := :9090
|
|
PROD_WORKERS := 4
|
|
ARCHIVE_DIR := ./vocoder/archive
|
|
|
|
default: dev-serve
|
|
|
|
dev-serve:
|
|
@FLASK_ENV=development FLASK_APP=vocoder.server flask run
|
|
|
|
clear-archive:
|
|
@rm -rf $(ARCHIVE_DIR)/*
|
|
|
|
prod-serve:
|
|
@gunicorn --workers $(PROD_WORKERS) --bind $(PROD_PORT) vocoder.server:app
|
|
|