-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
44 lines (31 loc) · 1004 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
################################################
# Installation #
################################################
install:
pipenv install
install-dev:
pipenv install --dev
################################################
# Tests & Code analysis #
################################################
test:
pipenv run pytest
lint:
pipenv run flake8 --ignore=E501 app.py gammabox
pipenv run pylint app.py gammabox
format:
pipenv run black .
################################################
# Running the app #
################################################
debug:
pipenv run python app.py --debug
run:
pipenv run gunicorn -k eventlet -w 1 --bind 0.0.0.0:8080 app:app
PID=$(shell cat run.pid)
start_gunicorn:
pipenv run gunicorn -k eventlet -w 1 --bind 0.0.0.0:8080 app:app > /dev/null 2>&1 & echo $$! > run.pid
start:
pipenv run python app.py > /dev/null 2>&1 & echo $$! > run.pid
stop:
kill ${PID}