├── .editorconfig ├── .env.example ├── .gitignore ├── .python-version ├── README.md ├── cliver ├── __init__.py ├── api │ ├── __init__.py │ └── routes │ │ ├── admin │ │ ├── __init__.py │ │ └── users.py │ │ ├── app │ │ └── __init__.py │ │ ├── auth.py │ │ └── v1 │ │ └── __init__.py ├── core │ ├── db.py │ ├── logger.py │ ├── middleware │ │ ├── __init__.py │ │ └── process.py │ ├── security.py │ ├── sentry.py │ └── validators │ │ ├── __init__.py │ │ ├── types.py │ │ └── utils.py ├── dependencies │ ├── __init__.py │ └── auth.py ├── main.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models │ ├── __init__.py │ ├── user.py │ └── user_profile.py ├── schemas │ ├── __init__.py │ ├── auth.py │ └── users.py └── settings.py ├── makefile ├── manage.py ├── poetry.lock ├── pyproject.toml ├── run.py └── tests └── __init__.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhmiller/fastapi-with-django-orm-template/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhmiller/fastapi-with-django-orm-template/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhmiller/fastapi-with-django-orm-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhmiller/fastapi-with-django-orm-template/HEAD/README.md -------------------------------------------------------------------------------- /cliver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cliver/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhmiller/fastapi-with-django-orm-template/HEAD/cliver/api/__init__.py -------------------------------------------------------------------------------- /cliver/api/routes/admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhmiller/fastapi-with-django-orm-template/HEAD/cliver/api/routes/admin/__init__.py -------------------------------------------------------------------------------- /cliver/api/routes/admin/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhmiller/fastapi-with-django-orm-template/HEAD/cliver/api/routes/admin/users.py -------------------------------------------------------------------------------- /cliver/api/routes/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cliver/api/routes/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhmiller/fastapi-with-django-orm-template/HEAD/cliver/api/routes/auth.py -------------------------------------------------------------------------------- /cliver/api/routes/v1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cliver/core/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhmiller/fastapi-with-django-orm-template/HEAD/cliver/core/db.py -------------------------------------------------------------------------------- /cliver/core/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhmiller/fastapi-with-django-orm-template/HEAD/cliver/core/logger.py -------------------------------------------------------------------------------- /cliver/core/middleware/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhmiller/fastapi-with-django-orm-template/HEAD/cliver/core/middleware/__init__.py -------------------------------------------------------------------------------- /cliver/core/middleware/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhmiller/fastapi-with-django-orm-template/HEAD/cliver/core/middleware/process.py -------------------------------------------------------------------------------- /cliver/core/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhmiller/fastapi-with-django-orm-template/HEAD/cliver/core/security.py -------------------------------------------------------------------------------- /cliver/core/sentry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhmiller/fastapi-with-django-orm-template/HEAD/cliver/core/sentry.py -------------------------------------------------------------------------------- /cliver/core/validators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cliver/core/validators/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhmiller/fastapi-with-django-orm-template/HEAD/cliver/core/validators/types.py -------------------------------------------------------------------------------- /cliver/core/validators/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhmiller/fastapi-with-django-orm-template/HEAD/cliver/core/validators/utils.py -------------------------------------------------------------------------------- /cliver/dependencies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cliver/dependencies/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhmiller/fastapi-with-django-orm-template/HEAD/cliver/dependencies/auth.py -------------------------------------------------------------------------------- /cliver/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhmiller/fastapi-with-django-orm-template/HEAD/cliver/main.py -------------------------------------------------------------------------------- /cliver/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhmiller/fastapi-with-django-orm-template/HEAD/cliver/migrations/0001_initial.py -------------------------------------------------------------------------------- /cliver/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cliver/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhmiller/fastapi-with-django-orm-template/HEAD/cliver/models/__init__.py -------------------------------------------------------------------------------- /cliver/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhmiller/fastapi-with-django-orm-template/HEAD/cliver/models/user.py -------------------------------------------------------------------------------- /cliver/models/user_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhmiller/fastapi-with-django-orm-template/HEAD/cliver/models/user_profile.py -------------------------------------------------------------------------------- /cliver/schemas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cliver/schemas/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhmiller/fastapi-with-django-orm-template/HEAD/cliver/schemas/auth.py -------------------------------------------------------------------------------- /cliver/schemas/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhmiller/fastapi-with-django-orm-template/HEAD/cliver/schemas/users.py -------------------------------------------------------------------------------- /cliver/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhmiller/fastapi-with-django-orm-template/HEAD/cliver/settings.py -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhmiller/fastapi-with-django-orm-template/HEAD/makefile -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhmiller/fastapi-with-django-orm-template/HEAD/manage.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhmiller/fastapi-with-django-orm-template/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhmiller/fastapi-with-django-orm-template/HEAD/pyproject.toml -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhmiller/fastapi-with-django-orm-template/HEAD/run.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------