Basic template

This commit is contained in:
DarkCat09 2023-02-14 19:53:57 +04:00
commit 058bcd13e5
9 changed files with 240 additions and 0 deletions

16
Makefile Normal file
View file

@ -0,0 +1,16 @@
dev:
FLASK_DEBUG="true" flask run
prod:
flask run
format:
python3 -m autopep8 -r --in-place flaskapp/
check:
python3 -m mypy flaskapp/
python3 -m pylint flaskapp/
clean:
rm -rf flaskapp/__pycache__
rm -rf .mypy_cache