FastBoz is a high-performance backend service built with FastAPI and containerized with Docker.
It is designed for speed, scalability, and simplicity, making it perfect for building modern APIs or microservices.
- ⚡ FastAPI-powered — Ultra-fast Python backend framework
- 🐳 Dockerized deployment — Ready-to-run anywhere
- 🔄 RESTful API endpoints — Easy integration
- 🛠 Modular & extensible architecture
- 📜 Swagger/OpenAPI documentation (Auto-generated by FastAPI)
fast-boz/
│── docker-compose.yml # Docker configuration
│── Dockerfile # Docker build instructions
│── main.py # Application entry point
│── reqi.txt # Python dependencies
│── Readme.md # Documentation
Once the application is running, API documentation will be available at:
- Swagger UI:
http://localhost:8888/docs - ReDoc:
http://localhost:8888/redoc
git clone https://github.com/alirezarazani2003/Fast-BOZ.git
cd Fast-BOZMake sure Python 3.10+ is installed.
pip install -r reqi.txtpython main.pyMake sure Docker & Docker Compose are installed.
docker-compose up --buildThe service will be available at:
http://localhost:8888
| Method | Endpoint | Description |
|---|---|---|
| GET | / |
Health check / root route |
| GET | /docs |
Swagger API docs |
| GET | /redoc |
ReDoc API docs |
| GET | /api/info |
info |
Contributions are welcome!
Please open an issue or submit a pull request.