-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
44 lines (26 loc) · 1.58 KB
/
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
###--START--############################################################################################################
api:
gunicorn --config ./src/innonymous/gunicorn.conf.py innonymous.presenters.api.application:application
server:
docker compose up -d
########################################################################################################################
###--TEST--#############################################################################################################
test:
pytest --force-testdox --showlocals --cov-report term --cov-report xml:coverage.xml --cov=innonymous --tb=native ./src/tests/
########################################################################################################################
###--LINT--#############################################################################################################
format:
black ./src/ && ruff --fix ./src/innonymous/
lint:
black --check ./src/ && ruff ./src/innonymous && mypy --install-types --non-interactive ./src/innonymous/
########################################################################################################################
###--DOCKER--###########################################################################################################
build:
docker build -t ghcr.io/innonymous/backend:latest .
push:
docker push ghcr.io/innonymous/backend:latest
pull:
docker pull ghcr.io/innonymous/backend:latest
prune:
docker system prune -f
########################################################################################################################