mirror of
https://github.com/fastapi-users/fastapi-users.git
synced 2026-03-13 07:49:55 +08:00
* Start to write documentation * Add docs favicon * Add routes documentation * Add doc about dependency callables * Add information about how to make authenticated calls
20 lines
335 B
Makefile
20 lines
335 B
Makefile
PIPENV_RUN := pipenv run
|
|
|
|
isort-src:
|
|
$(PIPENV_RUN) isort -rc ./fastapi_users
|
|
|
|
isort-docs:
|
|
$(PIPENV_RUN) isort -rc ./docs/src -o fastapi_users
|
|
|
|
format: isort-src isort-docs
|
|
$(PIPENV_RUN) black .
|
|
|
|
test:
|
|
$(PIPENV_RUN) pytest --cov=fastapi_users/
|
|
|
|
docs-serve:
|
|
$(PIPENV_RUN) mkdocs serve
|
|
|
|
docs-publish:
|
|
$(PIPENV_RUN) mkdocs gh-deploy
|