-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
38 lines (28 loc) · 914 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
################################################
# 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:9898 app:app
install-systemd-unit:
sudo cp ./misc/gamma-box.service /etc/systemd/system/
sudo systemctl daemon-reload
sudo systemctl enable gamma-box.service