matthieuporte / QRLog

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Alembic

init migrations

alembic init backend/db/migrations

where backend/db/migrations is the directory to save migrations files

generate migrations file

alembic revision --autogenerate -m "comment to update"

apply migrations

alembic upgrade head

Linters

black : reindent code

black --check backend black backend

isort : reorder imports

isort --check backend isort backend

flake8 : 

flake8 backend --count --show-source --statistics flake8 backend

About


Languages

Language:Python 72.0%Language:CSS 13.0%Language:HTML 10.4%Language:Mako 2.2%Language:Shell 2.0%Language:Procfile 0.4%