Welcome to the Crouton Boilerplate repository! This template demonstrates how to use Crouton to rapidly build API CRUD routes.
- 🚀 FastAPI Integration: Set up and customize CRUD routes effortlessly.
- 🔧 Easy Setup: Get started quickly with pre-configured settings.
- 🧩 Modular Design: Clean and scalable structure for new projects.
- ✅ Best Practices: Aligned with FastAPI and Pydantic V2 community standards.
Ensure you have the following installed:
- Python 3.10+
- FastAPI
- Uvicorn
- Pydantic
- Sqlalchemy
Install dependencies using pip
:
pip install -r requirements.txt
Run the development server:
uvicorn main:app --reload
Visit http://127.0.0.1:8000/docs
to see the auto-generated OpenAPI documentation.