https://github.com/nfo94/fastodos
Simple todo app built with FastAPI for study purposes.
https://github.com/nfo94/fastodos
fastapi python
Last synced: about 2 months ago
JSON representation
Simple todo app built with FastAPI for study purposes.
- Host: GitHub
- URL: https://github.com/nfo94/fastodos
- Owner: nfo94
- Created: 2021-08-22T01:51:25.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2022-04-04T12:42:52.000Z (about 4 years ago)
- Last Synced: 2025-07-01T06:44:26.502Z (12 months ago)
- Topics: fastapi, python
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Simple todo app built with FastAPI for study purposes.
To run this project, create a virtual environment:
```bash
python3 -m venv .venv
```
Activate the virtual environment:
```bash
source .venv/bin/activate
```
Install dependencies:
```bash
pip install -r requirements.txt
```
Run the app:
```bash
python main.py
```