Basic template
This commit is contained in:
commit
058bcd13e5
9 changed files with 240 additions and 0 deletions
16
Makefile
Normal file
16
Makefile
Normal 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
|
Loading…
Add table
Reference in a new issue