Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tvziet/todo_app
Todo App with FastAPI
https://github.com/tvziet/todo_app
fastapi python3 render sqlalchemy todo-app
Last synced: 16 days ago
JSON representation
Todo App with FastAPI
- Host: GitHub
- URL: https://github.com/tvziet/todo_app
- Owner: tvziet
- Created: 2024-06-11T02:15:29.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-07-17T03:49:41.000Z (7 months ago)
- Last Synced: 2024-12-03T16:14:57.176Z (about 2 months ago)
- Topics: fastapi, python3, render, sqlalchemy, todo-app
- Language: Python
- Homepage: https://todo-app-vqdy.onrender.com/docs
- Size: 240 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Learn FastAPI
## Content
- Full SQL database
- Authentication
- Authorization
- Hashing passwords
- CRUD for:
- Todo
- Admin User
- Normal User## How to setup
### Install packages
```bash
pip install fastapi uvicorn fastapi-pagination bcrypt python-jose sqlalchemy alembic
```## How to run server
### On local
```bash
uvicorn main:app --reload
```### On Docker
```
TODO
```