File size: 330 Bytes
81e73d0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
include .config
include .env

lint:
	black . --line-length 120 --exclude=${DEPENDENCIES_PATH}
	isort .
	ruff --exclude=${DEPENDENCIES_PATH} .

test:
	pytest -svv

build:
	docker compose build

build-and-start:
	docker compose up --build

start:
	docker compose up

start-detached:
	docker compose up -d

stop:
	docker compose down