An accessible, session-based task management app (aka todolist).
- Share tasks list with your friends!
- Navigate, modify your task list without touching mouse.
- Easy-to-use user interface
Backend : Golang (fiber) + PostgreSQL + https://github.com/golang-migrate/migrate
Frontend : React (Vite.js) + Tailwind.css
Todo-Link
├── client // Frontend
│ ├── src
│ │ ├── api
│ │ ├── components
│ │ ├── hooks
│ │ └── main.tsx // Entry point
│ └── index.html
└── server // Backend
├── migrations // Golang-migrate
├── model // Data models
├── router // API Routes
├── config.go // For reading config
├── app.toml // Config file
└── main.go