LICENSE
MANIFEST.in
README.md
setup.py
hatchback/__init__.py
hatchback/cli.py
hatchback/utils.py
hatchback.egg-info/PKG-INFO
hatchback.egg-info/SOURCES.txt
hatchback.egg-info/dependency_links.txt
hatchback.egg-info/entry_points.txt
hatchback.egg-info/requires.txt
hatchback.egg-info/top_level.txt
hatchback/commands/__init__.py
hatchback/commands/init.py
hatchback/commands/inspect.py
hatchback/commands/make.py
hatchback/commands/migrate.py
hatchback/commands/run.py
hatchback/commands/seed.py
hatchback/commands/test.py
hatchback/scaffold_templates/model.tpl
hatchback/scaffold_templates/repository.tpl
hatchback/scaffold_templates/route.tpl
hatchback/scaffold_templates/schema.tpl
hatchback/scaffold_templates/service.tpl
hatchback/scaffold_templates/test.tpl
hatchback/template/.dockerignore
hatchback/template/.env.example
hatchback/template/Dockerfile
hatchback/template/README.md
hatchback/template/alembic.ini
hatchback/template/docker-compose.yml
hatchback/template/pyproject.toml
hatchback/template/requirements.txt
hatchback/template/seed.py
hatchback/template/seeds.json
hatchback/template/alembic/env.py
hatchback/template/alembic/script.py.mako
hatchback/template/alembic/versions/.gitkeep
hatchback/template/app/dependencies.py
hatchback/template/app/main.py
hatchback/template/app/config/database.py
hatchback/template/app/config/limiter.py
hatchback/template/app/models/__init__.py
hatchback/template/app/models/tenant.py
hatchback/template/app/models/user.py
hatchback/template/app/repositories/__init__.py
hatchback/template/app/repositories/base.py
hatchback/template/app/repositories/tenant.py
hatchback/template/app/repositories/user.py
hatchback/template/app/routes/__init__.py
hatchback/template/app/routes/auth.py
hatchback/template/app/routes/tenant.py
hatchback/template/app/routes/user.py
hatchback/template/app/schemas/__init__.py
hatchback/template/app/schemas/auth.py
hatchback/template/app/schemas/tenant.py
hatchback/template/app/schemas/user.py
hatchback/template/app/services/__init__.py
hatchback/template/app/services/auth.py
hatchback/template/app/services/notification.py
hatchback/template/app/services/tenant.py
hatchback/template/app/services/user.py
hatchback/template/tests/__init__.py
hatchback/template/tests/conftest.py
hatchback/template/tests/test_auth_recovery.py
hatchback/template/tests/test_change_password.py
hatchback/template/tests/test_dependencies.py
hatchback/template/tests/test_tenants.py
hatchback/template/tests/test_users.py