.gitignore
LICENSE
README.md
pyproject.toml
requirements.txt
create_fast_app/__init__.py
create_fast_app/cli.py
create_fast_app/utils.py
create_fast_app.egg-info/PKG-INFO
create_fast_app.egg-info/SOURCES.txt
create_fast_app.egg-info/dependency_links.txt
create_fast_app.egg-info/entry_points.txt
create_fast_app.egg-info/requires.txt
create_fast_app.egg-info/top_level.txt
create_fast_app/templates/__init__.py
create_fast_app/templates/microservice/.env
create_fast_app/templates/microservice/Dockerfile
create_fast_app/templates/microservice/Makefile
create_fast_app/templates/microservice/README.md
create_fast_app/templates/microservice/requirements/base.txt
create_fast_app/templates/microservice/requirements/dev.txt
create_fast_app/templates/microservice/requirements/prod.txt
create_fast_app/templates/microservice/src/__init__.py
create_fast_app/templates/microservice/src/app.py
create_fast_app/templates/microservice/src/database.py
create_fast_app/templates/microservice/src/models.py
create_fast_app/templates/microservice/src/routes.py
create_fast_app/templates/microservice/src/schemas.py
create_fast_app/templates/microservice/src/utils.py
create_fast_app/templates/ml_app/README.md
create_fast_app/templates/ml_app/src/__init__.py
create_fast_app/templates/ml_app/src/data/make_dataset.py
create_fast_app/templates/ml_app/src/features/build_features.py
create_fast_app/templates/ml_app/src/models/predict.py
create_fast_app/templates/ml_app/src/models/train.py
create_fast_app/templates/monolith/.env
create_fast_app/templates/monolith/.gitignore
create_fast_app/templates/monolith/Dockerfile
create_fast_app/templates/monolith/Makefile
create_fast_app/templates/monolith/README.md
create_fast_app/templates/monolith/requirements/base.txt
create_fast_app/templates/monolith/requirements/dev.txt
create_fast_app/templates/monolith/requirements/prod.txt
create_fast_app/templates/monolith/src/config.py
create_fast_app/templates/monolith/src/database.py
create_fast_app/templates/monolith/src/main.py
create_fast_app/templates/monolith/src/models.py
create_fast_app/templates/monolith/src/utils.py
create_fast_app/templates/monolith/src/package1/config.py
create_fast_app/templates/monolith/src/package1/constants.py
create_fast_app/templates/monolith/src/package1/dependencies.py
create_fast_app/templates/monolith/src/package1/exceptions.py
create_fast_app/templates/monolith/src/package1/models.py
create_fast_app/templates/monolith/src/package1/router.py
create_fast_app/templates/monolith/src/package1/schemas.py
create_fast_app/templates/monolith/src/package1/service.py
create_fast_app/templates/monolith/src/package1/utils.py
tests/test_create_fast_app.py