https://github.com/flavien-hugs/simple-fastapi
Simple API with FastAPI
https://github.com/flavien-hugs/simple-fastapi
fastapi fastapi- fastapi-crud fastapi-sqlalchemy
Last synced: 4 months ago
JSON representation
Simple API with FastAPI
- Host: GitHub
- URL: https://github.com/flavien-hugs/simple-fastapi
- Owner: flavien-hugs
- Created: 2022-12-18T12:32:14.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-02T13:18:29.000Z (over 2 years ago)
- Last Synced: 2025-03-29T03:44:59.308Z (6 months ago)
- Topics: fastapi, fastapi-, fastapi-crud, fastapi-sqlalchemy
- Language: Python
- Homepage:
- Size: 42 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple API with FastAPI
## Technology Stack:
- Python 3.10+
- pipenv ou pip
- FastAPI
- Uvicorn (server)
- Pytest
- sqlalchemy
- Alembic
- Postgresql## Clone the project
```
git clone https://github.com/flavienn-hugs/apilabonnedame.git
```## Test the project locally
```
run: make runserver
or
uvicorn core.main:app --reload
```## Installing the dependencies
```
If use pipenv: pipenv installor
If using pip: pip install -r core/requirements.txt
```