https://github.com/rellyson/fastapi-boilerplate
FastAPI boilerplate for API projects
https://github.com/rellyson/fastapi-boilerplate
fastapi fastapi-boilerplate
Last synced: 5 months ago
JSON representation
FastAPI boilerplate for API projects
- Host: GitHub
- URL: https://github.com/rellyson/fastapi-boilerplate
- Owner: rellyson
- License: mit
- Created: 2024-01-25T18:59:02.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-25T20:13:17.000Z (over 2 years ago)
- Last Synced: 2024-01-26T20:24:30.298Z (over 2 years ago)
- Topics: fastapi, fastapi-boilerplate
- Language: Python
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
FastAPI boilerplate


FastAPI boilerplate for API projects
## About
This repository provides a basic boilerplate for
[FastAPI](https://fastapi.tiangolo.com/) projects.
This boilerplate is useful for developers designing
RESTFul applications.
## Setup
Before starting the project, install project dependencies.
```sh
# install requirements with pip
pip install -r requirements.txt
```
## Running the application
Start the application by running `python app.py` command.
After start, the application will be available
at `http://localhost:3000/`.