CONTRIBUTING.md
LICENSE
MANIFEST.in
README.md
pyproject.toml
boilerpy.egg-info/PKG-INFO
boilerpy.egg-info/SOURCES.txt
boilerpy.egg-info/dependency_links.txt
boilerpy.egg-info/entry_points.txt
boilerpy.egg-info/requires.txt
boilerpy.egg-info/top_level.txt
speed_blueprint/cli.py
speed_blueprint/generator.py
speed_blueprint/templates.py
speed_blueprint/template_files/fastapi/api/.env.example
speed_blueprint/template_files/fastapi/api/.gitignore
speed_blueprint/template_files/fastapi/api/README.md
speed_blueprint/template_files/fastapi/api/requirements.txt
speed_blueprint/template_files/fastapi/api/app/__init__.py
speed_blueprint/template_files/fastapi/api/app/main.py
speed_blueprint/template_files/fastapi/api/app/api/__init__.py
speed_blueprint/template_files/fastapi/api/app/api/v1/__init__.py
speed_blueprint/template_files/fastapi/api/app/api/v1/router.py
speed_blueprint/template_files/fastapi/api/app/api/v1/endpoints/__init__.py
speed_blueprint/template_files/fastapi/api/app/api/v1/endpoints/health.py
speed_blueprint/template_files/fastapi/api/app/core/__init__.py
speed_blueprint/template_files/fastapi/api/app/core/config.py
speed_blueprint/template_files/fastapi/api/app/schemas/__init__.py
speed_blueprint/template_files/fastapi/auth/.env.example
speed_blueprint/template_files/fastapi/auth/.gitignore
speed_blueprint/template_files/fastapi/auth/README.md
speed_blueprint/template_files/fastapi/auth/requirements.txt
speed_blueprint/template_files/fastapi/auth/app/__init__.py
speed_blueprint/template_files/fastapi/auth/app/main.py
speed_blueprint/template_files/fastapi/auth/app/api/__init__.py
speed_blueprint/template_files/fastapi/auth/app/api/v1/__init__.py
speed_blueprint/template_files/fastapi/auth/app/api/v1/router.py
speed_blueprint/template_files/fastapi/auth/app/api/v1/endpoints/__init__.py
speed_blueprint/template_files/fastapi/auth/app/api/v1/endpoints/auth.py
speed_blueprint/template_files/fastapi/auth/app/api/v1/endpoints/health.py
speed_blueprint/template_files/fastapi/auth/app/api/v1/endpoints/users.py
speed_blueprint/template_files/fastapi/auth/app/core/__init__.py
speed_blueprint/template_files/fastapi/auth/app/core/config.py
speed_blueprint/template_files/fastapi/auth/app/core/dependencies.py
speed_blueprint/template_files/fastapi/auth/app/core/security.py
speed_blueprint/template_files/fastapi/auth/app/models/__init__.py
speed_blueprint/template_files/fastapi/auth/app/schemas/__init__.py
speed_blueprint/template_files/fastapi/auth/app/schemas/token.py
speed_blueprint/template_files/fastapi/auth/app/schemas/user.py
speed_blueprint/template_files/fastapi/sql/.env.example
speed_blueprint/template_files/fastapi/sql/.gitignore
speed_blueprint/template_files/fastapi/sql/README.md
speed_blueprint/template_files/fastapi/sql/alembic.ini
speed_blueprint/template_files/fastapi/sql/docker-compose.yml
speed_blueprint/template_files/fastapi/sql/requirements.txt
speed_blueprint/template_files/fastapi/sql/alembic/env.py
speed_blueprint/template_files/fastapi/sql/alembic/script.py.mako
speed_blueprint/template_files/fastapi/sql/alembic/versions/.gitkeep
speed_blueprint/template_files/fastapi/sql/app/__init__.py
speed_blueprint/template_files/fastapi/sql/app/main.py
speed_blueprint/template_files/fastapi/sql/app/api/__init__.py
speed_blueprint/template_files/fastapi/sql/app/api/v1/__init__.py
speed_blueprint/template_files/fastapi/sql/app/api/v1/router.py
speed_blueprint/template_files/fastapi/sql/app/api/v1/endpoints/__init__.py
speed_blueprint/template_files/fastapi/sql/app/api/v1/endpoints/health.py
speed_blueprint/template_files/fastapi/sql/app/api/v1/endpoints/items.py
speed_blueprint/template_files/fastapi/sql/app/core/__init__.py
speed_blueprint/template_files/fastapi/sql/app/core/config.py
speed_blueprint/template_files/fastapi/sql/app/core/database.py
speed_blueprint/template_files/fastapi/sql/app/crud/__init__.py
speed_blueprint/template_files/fastapi/sql/app/crud/item.py
speed_blueprint/template_files/fastapi/sql/app/db/__init__.py
speed_blueprint/template_files/fastapi/sql/app/db/init_db.py
speed_blueprint/template_files/fastapi/sql/app/models/__init__.py
speed_blueprint/template_files/fastapi/sql/app/models/base.py
speed_blueprint/template_files/fastapi/sql/app/models/item.py
speed_blueprint/template_files/fastapi/sql/app/schemas/__init__.py
speed_blueprint/template_files/fastapi/sql/app/schemas/item.py