chore: Update dependencies and task list

This commit is contained in:
2025-11-16 18:27:38 +01:00
parent 56bf044bb6
commit 1186c91dcf
4 changed files with 54 additions and 6 deletions

View File

@@ -16,18 +16,19 @@ This file tracks all active development tasks. It is based on the official `DEVE
* **Goal:** Get the basic API, database, and Twitch login flow working.
### To Do
* `[ ]` **1.1: Database Schema:** Define SQLAlchemy models for `User` (id, username, platform, encrypted_tokens) and `Settings`.
* `[ ]` **1.2: Twitch OAuth API:** Create FastAPI endpoints for `/login/twitch` (redirect) and `/auth/twitch/callback` (handles token exchange).
* `[ ]` **1.3: Secure Token Storage:** Implement helper functions to `encrypt` and `decrypt` OAuth tokens before storing them in the database.
* `[ ]` **1.4: Basic Session Management:** Create a simple session/JWT system to know *who* is logged in.
* `[ ]` **1.5: Login Frontend:** Create a basic `login.html` file with a "Login with Twitch" button.
### In Progress
* `[ ]` **1.0: Project Skeleton** - @ramforth
* *Task:* Setup `main.py`, `requirements.txt`, and `.gitignore`.
* `[ ]` **1.1: Database Schema:** Define SQLAlchemy models for `User` (id, username, platform, encrypted_tokens) and `Settings`. @ramforth
* `[ ]` **1.2: Twitch OAuth API:** Create FastAPI endpoints for `/login/twitch` (redirect) and `/auth/twitch/callback` (handles token exchange).@ramforth
### Done
* *(Nothing yet!)*
* `[ ]` **1.0: Project Skeleton** - @ramforth
* *Task:* Setup `main.py`, `requirements.txt`, and `.gitignore`.
---