FastAPI-fastkit: Fast, easy-to-use starter kit for new users of Python and FastAPI
This project was created to speed up the configuration of the development environment needed to develop Python-based web apps for new users of Python and FastAPI.
This project was inspired by the SpringBoot initializer
& Python Django's django-admin
cli operation.
- β‘ Immediate FastAPI project creation : Super-fast FastAPI workspace & project creation via CLI, inspired by
django-admin
feature of Python Django - π¨ Prettier CLI outputs : Beautiful CLI experience powered by rich library
- π Standards-based FastAPI project templates : All FastAPI-fastkit templates are based on Python standards and FastAPI's common use patterns
- π Automated template quality assurance : Weekly automated testing ensures all templates remain functional and up-to-date
- π Multiple project templates : Choose from various pre-configured templates for different use cases (async CRUD, Docker, PostgreSQL, etc.)
- π¦ Multiple package manager support : Choose your preferred Python package manager (pip, uv, pdm, poetry) for dependency management
Install FastAPI-fastkit
at your Python environment.
$ pip install FastAPI-fastkit
- Global options
--help
: Show help--version
: Show version--debug/--no-debug
: Toggle debug mode
fastkit init [OPTIONS]
- What it does: Scaffolds an empty FastAPI project, creates a virtual environment, installs dependencies
- Key options:
--project-name
,--author
,--author-email
,--description
--package-manager
[pip|uv|pdm|poetry]- Stack selection:
minimal
|standard
|full
(interactive)
fastkit startdemo [TEMPLATE] [OPTIONS]
- What it does: Creates a project from a template (e.g.,
fastapi-default
) and installs dependencies - Key options:
--project-name
,--author
,--author-email
,--description
--package-manager
[pip|uv|pdm|poetry]
- Tip: List available templates with
fastkit list-templates
fastkit addroute <project_name> <route_name>
- What it does: Adds a new API route to the specified project
fastkit runserver [OPTIONS]
- What it does: Starts the uvicorn development server
- Key options:
--host
,--port
,--reload/--no-reload
,--workers
fastkit list-templates
fastkit deleteproject <project_name>
For comprehensive guides and detailed usage instructions, visit our documentation:
- π User Guide - Detailed installation and usage guides
- π― Tutorial - Step-by-step tutorials for beginners
- π CLI Reference - Complete command reference
- π Template Quality Assurance - Automated testing and quality standards
We welcome contributions from the community! FastAPI-fastkit is designed to help newcomers to Python and FastAPI, and your contributions can make a significant impact.
Contributing Guide
-
Fork and clone the repository:
git clone https://github.com/bnbong/FastAPI-fastkit.git cd FastAPI-fastkit
-
Set up development environment:
make dev-setup # Sets up everything you need
-
Run development checks:
make dev-check # Format, lint, and test
- π New FastAPI templates - Add templates for different use cases
- π Bug fixes - Help us improve stability and reliability
- π Documentation - Improve guides, examples, and translations
- π§ͺ Tests - Increase test coverage and add integration tests
- π‘ Features - Suggest and implement new CLI features
For detailed contribution guidelines, development setup, and project standards, please refer to:
- CONTRIBUTING.md - Comprehensive contribution guide
- CODE_OF_CONDUCT.md - Project principles and community standards
- SECURITY.md - Security guidelines and reporting
FastAPI-fastkit aims to provide a fast and easy-to-use starter kit for new users of Python and FastAPI.
This idea was initiated with the aim of helping FastAPI newcomers learn from the beginning, which aligns with the production significance of the FastAPI-cli package added with the FastAPI 0.111.0 version update.
As someone who has been using and loving FastAPI for a long time, I wanted to develop a project that could help fulfill the wonderful motivation that FastAPI developer tiangolo has expressed.
FastAPI-fastkit bridges the gap between getting started and building production-ready applications by providing:
- Immediate productivity for newcomers who might be overwhelmed by setup complexity
- Best practices built into every template, helping users learn proper FastAPI patterns
- Scalable foundations that grow with users as they advance from beginners to experts
- Community-driven templates that reflect real-world FastAPI usage patterns
This project is licensed under the MIT License - see the LICENSE file for details.