bot reworked to class

This commit is contained in:
2022-08-28 06:38:00 +03:00
parent 2304955212
commit 591d5ea01a
6 changed files with 139 additions and 123 deletions

View File

@@ -4,8 +4,14 @@ PY_TARGET_FILES=
PORT=8000
.PHONY: app
app:
poetry run python app/main.py
app-up:
docker-compose up -d --build
app-down:
docker-compose down -v
app-clean:
docker-compose down -v && docker-clean run
# standard commands to run on every commit
format: