├── .env.sample ├── .gitignore ├── LICENSE ├── README.md ├── alembic.ini ├── alembic ├── README ├── env.py └── script.py.mako ├── app ├── __init__.py ├── config │ └── settings.py ├── db │ ├── __init__.py │ └── database.py └── routers │ ├── __init__.py │ └── auth │ ├── __init__.py │ ├── auth.py │ ├── models.py │ ├── services.py │ └── validators.py ├── docker-compose.yaml ├── main.py └── requirements.txt /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Niklas-dev/fastapi-quick-template/HEAD/.env.sample -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Niklas-dev/fastapi-quick-template/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Niklas-dev/fastapi-quick-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Niklas-dev/fastapi-quick-template/HEAD/README.md -------------------------------------------------------------------------------- /alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Niklas-dev/fastapi-quick-template/HEAD/alembic.ini -------------------------------------------------------------------------------- /alembic/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /alembic/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Niklas-dev/fastapi-quick-template/HEAD/alembic/env.py -------------------------------------------------------------------------------- /alembic/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Niklas-dev/fastapi-quick-template/HEAD/alembic/script.py.mako -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/config/settings.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/db/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Niklas-dev/fastapi-quick-template/HEAD/app/db/database.py -------------------------------------------------------------------------------- /app/routers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/routers/auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/routers/auth/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Niklas-dev/fastapi-quick-template/HEAD/app/routers/auth/auth.py -------------------------------------------------------------------------------- /app/routers/auth/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Niklas-dev/fastapi-quick-template/HEAD/app/routers/auth/models.py -------------------------------------------------------------------------------- /app/routers/auth/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Niklas-dev/fastapi-quick-template/HEAD/app/routers/auth/services.py -------------------------------------------------------------------------------- /app/routers/auth/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Niklas-dev/fastapi-quick-template/HEAD/app/routers/auth/validators.py -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Niklas-dev/fastapi-quick-template/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Niklas-dev/fastapi-quick-template/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Niklas-dev/fastapi-quick-template/HEAD/requirements.txt --------------------------------------------------------------------------------