https://github.com/codestorm-official/fastapi
A minimal and ready-to-use FastAPI REST API template for rapid project setup.
https://github.com/codestorm-official/fastapi
fastapi fastapi-boilerplate fastapi-crud fastapi-template hypercorn
Last synced: about 21 hours ago
JSON representation
A minimal and ready-to-use FastAPI REST API template for rapid project setup.
- Host: GitHub
- URL: https://github.com/codestorm-official/fastapi
- Owner: codestorm-official
- License: mit
- Created: 2025-08-21T09:43:33.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-08-21T10:15:14.000Z (10 months ago)
- Last Synced: 2026-02-23T22:49:19.218Z (4 months ago)
- Topics: fastapi, fastapi-boilerplate, fastapi-crud, fastapi-template, hypercorn
- Language: Python
- Homepage: https://railway.com/deploy/fastapi-1
- Size: 23.4 KB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
Awesome Lists containing this project
README
# FastAPI Starter
A minimal and ready-to-use [FastAPI](https://fastapi.tiangolo.com/) REST API template for rapid project setup.
[](https://railway.com/deploy/fastapi-1?referralCode=asepsp&utm_medium=integration&utm_source=template&utm_campaign=generic)

## ✨ Features
- FastAPI
- [Hypercorn](https://hypercorn.readthedocs.io/)
- Python 3
## 💁♀️ How to use
Clone this repository and install the required packages:
```bash
pip install -r requirements.txt
```
Run the server locally:
```bash
hypercorn main:app --reload
```
Open your browser and access:
- API: http://localhost:8000
- OpenAPI Documentation (Swagger UI): http://localhost:8000/docs
- Redoc Documentation: http://localhost:8000/redoc
## 📝 Notes
- To learn about how to use FastAPI with most of its features, you can visit the [FastAPI Documentation](https://fastapi.tiangolo.com/tutorial/)
- To learn about Hypercorn and how to configure it, read their [Documentation](https://hypercorn.readthedocs.io/)