An open API service indexing awesome lists of open source software.

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.

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
```