This is a Kanban-style task management project that allows users to create, edit, and organize tasks in different columns.
- Framework: FastAPI
- Database: PostgreSQL (Neon)
- ORM: SQLAlchemy
- Authentication: JWT (JSON Web Tokens)
- Environment: Python 3.x
- Framework: React + Next
- Libraries: Axios (for HTTP requests), React Router (for navigation)
- Styles: Tailwind CSS
The main Kanban board displays all sections with their respective tasks. Each task has color-coded labels to identify its type (Frontend, Backend, Design, etc.). Tasks can be dragged and dropped between columns.
The modal for adding new tasks allows you to enter a title, description, and select labels to categorize the task.
Before deleting a task, a confirmation dialog is displayed to prevent accidental deletions.
The editing interface allows you to modify all details of an existing task, including its title, description, labels, and completion status.
- Task Management: Create, edit, delete, and move tasks between different sections
- Custom Labels: Organize your tasks with color labels (Frontend, Backend, Design, etc.)
- Drag and Drop: Intuitive interface for moving tasks between columns
- Dark/Light Mode: Support for dark and light themes
- Responsive: Adaptive design for mobile and desktop devices
- Persistent Data: All tasks and sections are saved in the database
-
Clone the repository:
git clone https://github.com/your_username/your_repository.git cd your_repository/backend
-
Create a virtual environment (optional but recommended):
python -m venv venv
-
Activate the virtual environment:
- On Windows:
venv\Scripts\activate
- On macOS/Linux:
source venv/bin/activate
- On Windows:
-
Install dependencies:
pip install -r requirements.txt
-
Configure environment variables: Make sure you have a
.env
file in thebackend
folder with the following configuration:DATABASE_URL=[CONNECTION LINK TO YOUR DATABASE]
-
Start the server:
uvicorn app.main:app --reload
-
Navigate to the frontend folder:
cd ../frontend
-
Install dependencies:
npm install
-
Start the server:
npm start
-
Access the application: Open your browser and go to
http://localhost:3000
to see the application running.
If you wish to contribute to this project, please open an issue or submit a pull request.
https://my-planning-tawny.vercel.app/
This project is under the MIT License.