dvirlabs d830f33e23 fix: Add Request parameter to Google OAuth endpoints
Pass the FastAPI Request object to authorize_redirect() and authorize_access_token() methods as required by Authlib's Starlette integration
2026-02-20 16:53:34 +02:00
..
2025-12-19 00:00:15 +02:00
2025-12-10 15:19:07 +02:00
2025-12-10 19:45:05 +02:00
2025-12-10 19:45:05 +02:00
2025-12-10 15:19:07 +02:00
2025-12-10 15:19:07 +02:00
2025-12-10 15:19:07 +02:00
2025-12-10 15:19:07 +02:00

Tasko Backend

FastAPI backend for task management application.

Setup

  1. Create a virtual environment:
python -m venv venv
source venv/bin/activate  # On Windows: venv\Scripts\activate
  1. Install dependencies:
pip install -r requirements.txt
  1. Run the server:
python main.py

Or using uvicorn directly:

uvicorn main:app --reload --host 0.0.0.0 --port 8000

The API will be available at http://localhost:8000 API documentation at http://localhost:8000/docs