Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ahmad2b/nextfast-todo
https://github.com/ahmad2b/nextfast-todo
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ahmad2b/nextfast-todo
- Owner: ahmad2b
- Created: 2024-01-08T10:52:14.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-01-09T03:09:00.000Z (12 months ago)
- Last Synced: 2024-01-09T14:27:07.199Z (12 months ago)
- Language: Python
- Size: 48.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Next Fast ToDo App
This is a full-stack ToDo application built with Next.js on the frontend and FastAPI on the backend.
## Features
- Multi-tenant (todo)
- JWT Auth (todo)
- Streamlit client
- Python Console client
- Typescript Node.js client
- Next.js client
- pytest## Frontend
The frontend of the application is built with [Next.js](https://nextjs.org/)
### Techstack
- Next.js
- TailwindCSS
- ShadCn UI
- zod
- react-hook-form## Backend
The backend of the application is built with FastAPI, a modern, fast (high-performance), web framework for building APIs.
### Techstack
- FastAPI,
- PostgresSQL
- psycopg2
- SQLAlchemy
- Pytest
- requests## Interaction between Frontend and Backend
The frontend interacts with the backend through HTTP requests. When a user performs an action on the frontend (like creating a ToDo), a request is sent to the backend. The backend processes the request, performs the necessary database operations, and sends a response back to the frontend.
The frontend then updates the UI based on the response from the backend. This allows for a dynamic and interactive user experience.