https://github.com/beary/fastapi-todo-app
A todo app built with fastapi, sqlalchemy, postgresql, react, react-router, rtk-query, vite, mui.
https://github.com/beary/fastapi-todo-app
fastapi mui react react-router react-router-v7 rtk-query vite
Last synced: 16 days ago
JSON representation
A todo app built with fastapi, sqlalchemy, postgresql, react, react-router, rtk-query, vite, mui.
- Host: GitHub
- URL: https://github.com/beary/fastapi-todo-app
- Owner: beary
- Created: 2024-12-20T16:17:58.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-12-20T16:29:22.000Z (7 months ago)
- Last Synced: 2025-05-22T23:11:29.692Z (about 1 month ago)
- Topics: fastapi, mui, react, react-router, react-router-v7, rtk-query, vite
- Language: Python
- Homepage:
- Size: 167 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# fastapi-todo-app







## Usage
### Install and run server
```bash
git clone https://github.com/beary/fastapi-todo-app.git
cd fastapi-todo-app# Create virtual environment
python -m venv .venv
source .venv/bin/activate# Install python dependencies
python -m pip install -U pip
python -m pip install -U poetry
python -m poetry install# Configure database (edit .env)
cp example.env .env# Initialize database
python -m alembic upgrade head# Run server
python -m fastapi run --app app app/main.py
```### Install and run web
prerequisites:
- node
- pnpm```bash
cd web
pnpm install
pnpm run dev
```visit http://localhost:5173
