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/crm/.env.example
speed_blueprint/template_files/fastapi/crm/.gitignore
speed_blueprint/template_files/fastapi/crm/README.md
speed_blueprint/template_files/fastapi/crm/alembic.ini
speed_blueprint/template_files/fastapi/crm/docker-compose.yml
speed_blueprint/template_files/fastapi/crm/requirements.txt
speed_blueprint/template_files/fastapi/crm/alembic/README
speed_blueprint/template_files/fastapi/crm/alembic/env.py
speed_blueprint/template_files/fastapi/crm/alembic/script.py.mako
speed_blueprint/template_files/fastapi/crm/app/__init__.py
speed_blueprint/template_files/fastapi/crm/app/main.py
speed_blueprint/template_files/fastapi/crm/app/api/__init__.py
speed_blueprint/template_files/fastapi/crm/app/api/v1/__init__.py
speed_blueprint/template_files/fastapi/crm/app/api/v1/router.py
speed_blueprint/template_files/fastapi/crm/app/api/v1/endpoints/__init__.py
speed_blueprint/template_files/fastapi/crm/app/api/v1/endpoints/auth.py
speed_blueprint/template_files/fastapi/crm/app/api/v1/endpoints/customers.py
speed_blueprint/template_files/fastapi/crm/app/api/v1/endpoints/orders.py
speed_blueprint/template_files/fastapi/crm/app/api/v1/endpoints/products.py
speed_blueprint/template_files/fastapi/crm/app/api/v1/endpoints/users.py
speed_blueprint/template_files/fastapi/crm/app/core/__init__.py
speed_blueprint/template_files/fastapi/crm/app/core/config.py
speed_blueprint/template_files/fastapi/crm/app/core/database.py
speed_blueprint/template_files/fastapi/crm/app/core/dependencies.py
speed_blueprint/template_files/fastapi/crm/app/core/security.py
speed_blueprint/template_files/fastapi/crm/app/crud/__init__.py
speed_blueprint/template_files/fastapi/crm/app/crud/customer.py
speed_blueprint/template_files/fastapi/crm/app/crud/order.py
speed_blueprint/template_files/fastapi/crm/app/crud/product.py
speed_blueprint/template_files/fastapi/crm/app/crud/user.py
speed_blueprint/template_files/fastapi/crm/app/models/__init__.py
speed_blueprint/template_files/fastapi/crm/app/models/base.py
speed_blueprint/template_files/fastapi/crm/app/models/customer.py
speed_blueprint/template_files/fastapi/crm/app/models/order.py
speed_blueprint/template_files/fastapi/crm/app/models/product.py
speed_blueprint/template_files/fastapi/crm/app/models/user.py
speed_blueprint/template_files/fastapi/crm/app/schemas/__init__.py
speed_blueprint/template_files/fastapi/crm/app/schemas/customer.py
speed_blueprint/template_files/fastapi/crm/app/schemas/order.py
speed_blueprint/template_files/fastapi/crm/app/schemas/product.py
speed_blueprint/template_files/fastapi/crm/app/schemas/token.py
speed_blueprint/template_files/fastapi/crm/app/schemas/user.py
speed_blueprint/template_files/fastapi/mongo/.env.example
speed_blueprint/template_files/fastapi/mongo/.gitignore
speed_blueprint/template_files/fastapi/mongo/README.md
speed_blueprint/template_files/fastapi/mongo/docker-compose.yml
speed_blueprint/template_files/fastapi/mongo/requirements.txt
speed_blueprint/template_files/fastapi/mongo/app/__init__.py
speed_blueprint/template_files/fastapi/mongo/app/main.py
speed_blueprint/template_files/fastapi/mongo/app/api/__init__.py
speed_blueprint/template_files/fastapi/mongo/app/api/v1/__init__.py
speed_blueprint/template_files/fastapi/mongo/app/api/v1/router.py
speed_blueprint/template_files/fastapi/mongo/app/api/v1/endpoints/__init__.py
speed_blueprint/template_files/fastapi/mongo/app/api/v1/endpoints/items.py
speed_blueprint/template_files/fastapi/mongo/app/core/__init__.py
speed_blueprint/template_files/fastapi/mongo/app/core/config.py
speed_blueprint/template_files/fastapi/mongo/app/core/database.py
speed_blueprint/template_files/fastapi/mongo/app/crud/__init__.py
speed_blueprint/template_files/fastapi/mongo/app/crud/item.py
speed_blueprint/template_files/fastapi/mongo/app/models/__init__.py
speed_blueprint/template_files/fastapi/mongo/app/models/item.py
speed_blueprint/template_files/fastapi/mongo/app/schemas/__init__.py
speed_blueprint/template_files/fastapi/mongo/app/schemas/item.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
speed_blueprint/template_files/flask/api/.env.example
speed_blueprint/template_files/flask/api/README.md
speed_blueprint/template_files/flask/api/requirements.txt
speed_blueprint/template_files/flask/api/app/__init__.py
speed_blueprint/template_files/flask/api/app/api/__init__.py
speed_blueprint/template_files/flask/api/app/api/v1/__init__.py
speed_blueprint/template_files/flask/api/app/api/v1/endpoints/__init__.py
speed_blueprint/template_files/flask/api/app/api/v1/endpoints/items.py
speed_blueprint/template_files/flask/api/app/core/__init__.py
speed_blueprint/template_files/flask/api/app/core/config.py
speed_blueprint/template_files/flask/api/app/schemas/__init__.py
speed_blueprint/template_files/flask/auth/.env.example
speed_blueprint/template_files/flask/auth/README.md
speed_blueprint/template_files/flask/auth/requirements.txt
speed_blueprint/template_files/flask/auth/app/__init__.py
speed_blueprint/template_files/flask/auth/app/api/__init__.py
speed_blueprint/template_files/flask/auth/app/api/v1/__init__.py
speed_blueprint/template_files/flask/auth/app/api/v1/endpoints/__init__.py
speed_blueprint/template_files/flask/auth/app/api/v1/endpoints/auth.py
speed_blueprint/template_files/flask/auth/app/api/v1/endpoints/users.py
speed_blueprint/template_files/flask/auth/app/core/__init__.py
speed_blueprint/template_files/flask/auth/app/core/config.py
speed_blueprint/template_files/flask/auth/app/core/security.py
speed_blueprint/template_files/flask/auth/app/models/__init__.py
speed_blueprint/template_files/flask/auth/app/schemas/__init__.py
speed_blueprint/template_files/flask/fullstack/.env.example
speed_blueprint/template_files/flask/fullstack/README.md
speed_blueprint/template_files/flask/fullstack/requirements.txt
speed_blueprint/template_files/flask/fullstack/app/__init__.py
speed_blueprint/template_files/flask/fullstack/app/core/__init__.py
speed_blueprint/template_files/flask/fullstack/app/core/config.py
speed_blueprint/template_files/flask/fullstack/app/forms/__init__.py
speed_blueprint/template_files/flask/fullstack/app/forms/auth.py
speed_blueprint/template_files/flask/fullstack/app/models/__init__.py
speed_blueprint/template_files/flask/fullstack/app/models/user.py
speed_blueprint/template_files/flask/fullstack/app/routes/__init__.py
speed_blueprint/template_files/flask/fullstack/app/routes/auth.py
speed_blueprint/template_files/flask/fullstack/app/routes/main.py
speed_blueprint/template_files/flask/fullstack/app/static/css/style.css
speed_blueprint/template_files/flask/fullstack/app/static/js/main.js
speed_blueprint/template_files/flask/fullstack/app/templates/about.html
speed_blueprint/template_files/flask/fullstack/app/templates/base.html
speed_blueprint/template_files/flask/fullstack/app/templates/dashboard.html
speed_blueprint/template_files/flask/fullstack/app/templates/index.html
speed_blueprint/template_files/flask/fullstack/app/templates/auth/login.html
speed_blueprint/template_files/flask/fullstack/app/templates/auth/register.html
speed_blueprint/template_files/flask/fullstack/app/templates/errors/404.html
speed_blueprint/template_files/flask/fullstack/app/templates/errors/500.html
speed_blueprint/template_files/flask/mongo/.env.example
speed_blueprint/template_files/flask/mongo/README.md
speed_blueprint/template_files/flask/mongo/docker-compose.yml
speed_blueprint/template_files/flask/mongo/requirements.txt
speed_blueprint/template_files/flask/mongo/app/__init__.py
speed_blueprint/template_files/flask/mongo/app/api/__init__.py
speed_blueprint/template_files/flask/mongo/app/api/v1/__init__.py
speed_blueprint/template_files/flask/mongo/app/api/v1/endpoints/__init__.py
speed_blueprint/template_files/flask/mongo/app/api/v1/endpoints/items.py
speed_blueprint/template_files/flask/mongo/app/core/__init__.py
speed_blueprint/template_files/flask/mongo/app/core/config.py
speed_blueprint/template_files/flask/mongo/app/core/database.py
speed_blueprint/template_files/flask/mongo/app/models/__init__.py
speed_blueprint/template_files/flask/mongo/app/models/item.py
speed_blueprint/template_files/flask/mongo/app/schemas/__init__.py
speed_blueprint/template_files/flask/mongo/app/schemas/item.py
speed_blueprint/template_files/flask/sql/.env.example
speed_blueprint/template_files/flask/sql/README.md
speed_blueprint/template_files/flask/sql/docker-compose.yml
speed_blueprint/template_files/flask/sql/requirements.txt
speed_blueprint/template_files/flask/sql/app/__init__.py
speed_blueprint/template_files/flask/sql/app/api/__init__.py
speed_blueprint/template_files/flask/sql/app/api/v1/__init__.py
speed_blueprint/template_files/flask/sql/app/api/v1/endpoints/__init__.py
speed_blueprint/template_files/flask/sql/app/api/v1/endpoints/users.py
speed_blueprint/template_files/flask/sql/app/core/__init__.py
speed_blueprint/template_files/flask/sql/app/core/config.py
speed_blueprint/template_files/flask/sql/app/core/database.py
speed_blueprint/template_files/flask/sql/app/crud/__init__.py
speed_blueprint/template_files/flask/sql/app/crud/user.py
speed_blueprint/template_files/flask/sql/app/models/__init__.py
speed_blueprint/template_files/flask/sql/app/models/user.py
speed_blueprint/template_files/flask/sql/app/schemas/__init__.py
speed_blueprint/template_files/flask/sql/app/schemas/user.py