Todo List App

• Mycki Jeffree Isema Backend

API de gerenciamento de tarefas com FastAPI e SQLAlchemy.

Todo List App
FastAPI SQLAlchemy Backend Python

Todo List App

Uma API REST para gerenciamento de tarefas, desenvolvida com FastAPI e SQLAlchemy.
Suporta criação, leitura, atualização e exclusão de tarefas (CRUD).


🚀 Funcionalidades


📦 Tecnologias


🔧 Como rodar localmente

git clone https://github.com/myckijeffreeisema/todo-list-app.git
cd todo-list-app

# Criar e ativar ambiente virtual
python3 -m venv venv
source venv/bin/activate    # Linux/Mac
.\venv\Scripts\activate     # Windows

# Instalar dependências
pip install -r requirements.txt

# Rodar servidor
uvicorn app.main:app --reload