add jwt to config.py

This commit is contained in:
grillazz
2021-06-25 09:05:52 +02:00
parent 174a1add0b
commit 97c7a3c206
5 changed files with 35 additions and 2 deletions

View File

@@ -31,9 +31,12 @@ safety: ## Check project and dependencies with safety https://github.com/pyupio/
docker-compose run --rm app safety check
.PHONY: lint
lint: ## Linte project code.
lint: ## Lint project code.
isort .
black --fast --line-length=120 .
mypy --ignore-missing-imports the_app
flake8 --config .flake8 .
.PHONY: secret
secret: ## Generate random secret.
openssl rand -hex 32