fastapi-forge
A UI Based FastAPI Project Generation tool.
File Explorer
Download Latest Version (.zip)- check.yaml
- cli_test.yaml
- release.yaml
- __init__.py
- adapters.py
- protocols.py
- __init__.py
- protocols.py
- validators.py
- __init__.py
- processors.py
- protocols.py
- __init__.py
- build.py
- game_zone.yaml
- __init__.py
- header.py
- item_create.py
- item_row.py
- __init__.py
- enum_modal.py
- field_modal.py
- relation_modal.py
- __init__.py
- enum_editor_panel.py
- item_editor_panel.py
- left_panel.py
- model_editor_panel.py
- project_config_panel.py
- __init__.py
- constants.py
- main.py
- notifications.py
- state.py
- validation.py
- __init__.py
- fastapi_builder.py
- protocols.py
- utils.py
- __init__.py
- postgres_inspector.py
- protocols.py
- schema.py
- __init__.py
- protocols.py
- yaml_exporter.py
- __init__.py
- protocols.py
- writer.py
- __init__.py
- database_loader.py
- protocols.py
- yaml_loader.py
- __init__.py
- __init__.py
- jinja2_engine.py
- protocols.py
- __init__.py
- enums.py
- protocols.py
- __init__.py
- dao.py
- dto.py
- enums.py
- model.py
- routes.py
- tests.py
- __init__.py
- filters.py
- manager.py
- registry.py
- post_gen_project.py
- check.yaml
- __init__.py
- env.py
- script.py.mako
- prometheus.yaml
- __init__.py
- __init__.py
- conftest.py
- factories.py
- test_utils.py
- __init__.py
- base_daos.py
- __init__.py
- db_dependencies.py
- db_lifetime.py
- __init__.py
- auth_dependencies.py
- __init__.py
- auth_dtos.py
- __init__.py
- __init__.py
- auth_routes.py
- demo_routes.py
- health_routes.py
- __init__.py
- rabbitmq_dependencies.py
- rabbitmq_lifetime.py
- __init__.py
- redis_dependencies.py
- redis_lifetime.py
- __init__.py
- broker.py
- scheduler.py
- taskiq_lifetime.py
- tasks.py
- __init__.py
- __init__.py
- auth_utils.py
- __init__.py
- __main__.py
- constants.py
- exceptions.py
- main.py
- middleware.py
- settings.py
- .env.example
- .gitignore
- alembic.ini
- docker-compose.yaml
- Dockerfile
- forge-config.yaml
- Makefile
- pyproject.toml
- README.md
- cookiecutter.json
- local_extensions.py
- __init__.py
- string_utils.py
- __init__.py
- __main__.py
- constants.py
- enums.py
- logger.py
- schemas.py
- type_info_registry.py
- __init__.py
- conftest.py
- test_render.py
- test_schemas.py
- test_string_utils.py
- test_type_registry.py
- .gitignore
- docker-compose.yaml
- init.sql
- LICENSE
- Makefile
- pyproject.toml
- README.md
- uv.lock
# Installation Guide
git clone https://github.com/mslaursen/fastapi-forge
Downloads the entire project code from GitHub to your computer.
cd fastapi-forge
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommended- Python 3 Python is required to use pip.
pip install fastapi-forge
Installs the package published on PyPI directly โ no need to clone the source.
Pulled directly from this repo's README.
3. Docker
Easy- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker compose up -d --build
Builds and starts all defined containers (server, database, etc.) at once, in the background.
4. Python
Easypip install fastapi-forge
Installs the package published on PyPI directly โ no need to clone the source.
Pulled directly from this repo's README.
5. Make
Medium- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make up # Builds and runs your project along with additional services
Compiles the code based on the generated build configuration to produce an executable.
make up
Compiles the code based on the generated build configuration to produce an executable.
make test
Compiles the code based on the generated build configuration to produce an executable.
make test-filter filter="test_name"
Compiles the code based on the generated build configuration to produce an executable.
make lint
Compiles the code based on the generated build configuration to produce an executable.
Pulled directly from this repo's README.
