https://github.com/jordanmarcelino/copier-fastapi-ml
Template for creating ML API with FastAPI & SQLModel
https://github.com/jordanmarcelino/copier-fastapi-ml
boilerplate boilerplate-template copier-python fastapi fastapi-template python starter starter-template
Last synced: 10 months ago
JSON representation
Template for creating ML API with FastAPI & SQLModel
- Host: GitHub
- URL: https://github.com/jordanmarcelino/copier-fastapi-ml
- Owner: JordanMarcelino
- License: mit
- Created: 2024-03-04T15:02:51.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-21T15:17:30.000Z (about 2 years ago)
- Last Synced: 2025-02-17T14:45:09.896Z (about 1 year ago)
- Topics: boilerplate, boilerplate-template, copier-python, fastapi, fastapi-template, python, starter, starter-template
- Language: Python
- Homepage:
- Size: 50.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FastAPI Template
_FastAPI Template for your machine learning project._
## Requirements to use the template:
- Python 3.9+
- [Copier python package](https://copier.readthedocs.io/en/stable/)
- [Poetry python package](https://python-poetry.org/)
```bash
$ pip install copier
$ pip install poetry
```
or
```bash
$ conda install copier
$ conda install poetry
```
## To start a new project, run:
```bash
copier copy https://github.com/JordanMarcelino/copier-fastapi-ml . --trust
```
## Installing development requirements
```bash
poetry install
```
## Running the tests
```bash
pytest -v
```