https://github.com/flavien-hugs/todos-flask-api
Simple API avec Flask
https://github.com/flavien-hugs/todos-flask-api
flask flask-api marshmallow-schema marshmallow-sqlalchemy
Last synced: 4 days ago
JSON representation
Simple API avec Flask
- Host: GitHub
- URL: https://github.com/flavien-hugs/todos-flask-api
- Owner: flavien-hugs
- Created: 2023-05-18T17:50:02.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-18T17:57:53.000Z (over 2 years ago)
- Last Synced: 2025-03-29T03:44:58.307Z (7 months ago)
- Topics: flask, flask-api, marshmallow-schema, marshmallow-sqlalchemy
- Language: Python
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TodoItem API
Simple API avec Flask
## Fonctionnalités
- Lister les tâches
- Supprimer une tâche
- Détail d'une tâche
- Mettre à jour tâche## Prérequis
- Python 3.10
- Pip ou Pipenv## Installation
- Clonez ce dépôt sur votre machine locale:
- `git clone https://github.com/flavien-hugs/todos-api/`
- Naviguez vers le dossier du projet dans votre terminal:
- `cd todos-api`
- Installez les dépendances requises en exécutant la commande suivante:
- `pip install -r env/base.txt`
- ou `pipenv install`
- Initialisez la base de données en exécutant la commande suivante:
- `make initdb`
- Lancez l'application en exécutant la commande suivante:
- `python run.py`:) enjoy !