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.

15 lines
311 B

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