Newer
Older
SHELL := /bin/bash
default: build
build:
pip install -Ur requirements.txt
start:
@echo Starting supervisord
supervisord -c supervisord.conf
stop:
@echo Shutting down supervisord
supervisorctl shutdown
SHELL := /bin/bash
default: build
build:
pip install -Ur requirements.txt
start:
@echo Starting supervisord
supervisord -c supervisord.conf
stop:
@echo Shutting down supervisord
supervisorctl shutdown