├── .deepsource.toml ├── .dockerignore ├── .gitignore ├── COPYING ├── Dockerfile ├── README.md ├── cli.py ├── config_example.yaml ├── docker-compose.yml ├── poetry.lock ├── pyproject.toml ├── requirements.txt └── service1 ├── __init__.py ├── helpers └── helpers.py ├── main.py ├── models ├── __init__.py ├── auth.py └── common.py ├── routes ├── __init__.py ├── auth.py └── main.py └── service ├── __init__.py ├── mail.py └── user.py /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnelle/python_jwt_example_fastapi/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | __pycache__/ -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | config.yaml 3 | *.log 4 | .vscode 5 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnelle/python_jwt_example_fastapi/HEAD/COPYING -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnelle/python_jwt_example_fastapi/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnelle/python_jwt_example_fastapi/HEAD/README.md -------------------------------------------------------------------------------- /cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnelle/python_jwt_example_fastapi/HEAD/cli.py -------------------------------------------------------------------------------- /config_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnelle/python_jwt_example_fastapi/HEAD/config_example.yaml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnelle/python_jwt_example_fastapi/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnelle/python_jwt_example_fastapi/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnelle/python_jwt_example_fastapi/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnelle/python_jwt_example_fastapi/HEAD/requirements.txt -------------------------------------------------------------------------------- /service1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnelle/python_jwt_example_fastapi/HEAD/service1/__init__.py -------------------------------------------------------------------------------- /service1/helpers/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnelle/python_jwt_example_fastapi/HEAD/service1/helpers/helpers.py -------------------------------------------------------------------------------- /service1/main.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /service1/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /service1/models/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnelle/python_jwt_example_fastapi/HEAD/service1/models/auth.py -------------------------------------------------------------------------------- /service1/models/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnelle/python_jwt_example_fastapi/HEAD/service1/models/common.py -------------------------------------------------------------------------------- /service1/routes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /service1/routes/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnelle/python_jwt_example_fastapi/HEAD/service1/routes/auth.py -------------------------------------------------------------------------------- /service1/routes/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnelle/python_jwt_example_fastapi/HEAD/service1/routes/main.py -------------------------------------------------------------------------------- /service1/service/__init__.py: -------------------------------------------------------------------------------- 1 | from .user import UserService 2 | -------------------------------------------------------------------------------- /service1/service/mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnelle/python_jwt_example_fastapi/HEAD/service1/service/mail.py -------------------------------------------------------------------------------- /service1/service/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnelle/python_jwt_example_fastapi/HEAD/service1/service/user.py --------------------------------------------------------------------------------