TaskPulse is an intuitive application designed to help users register personalized tasks and efficiently track them based on their status. Whether you're managing personal projects, work tasks, or daily chores, TaskPulse provides a streamlined solution for keeping your tasks organized and ensuring nothing slips through the cracks.
Participating in
Task Registration: Easily register new tasks with detailed information, including task name, description, due date, and priority.
Status Tracking: Categorize tasks based on their status (e.g., To-Do, In Progress, Completed) to monitor progress at a glance.
Priority Sorting: Prioritize tasks by assigning different priority levels, ensuring that important tasks are given the attention they deserve.
User-Friendly Interface: The application boasts an intuitive and user-friendly interface, making task management a seamless and enjoyable experience.
Notification System: Receive timely reminders and notifications for approaching due dates, helping you stay on top of your tasks.
To get started with TaskPulse, follow these steps:
Clone the Repository:
git clone https://github.com/your-username/TaskPulse.git
cd TaskPulse
Backend Setup:
.env
file in the backend
folder..env
file:
PORT=8080
MONGODB_URL=<Your MongoDB Connection URL>
ENCRYPTION_REF=<Your Encryption Reference>
backend
folder:
bash cd backend
Run the frontend development server using the following command:
bash npm run dev
Ensure that you have a MongoDB instance running and replace <Your MongoDB Connection URL>
with the appropriate connection URL. The ENCRYPTION_REF
is a reference used for encryption; replace it with a secret key for your application.
Frontend Setup:
frontend
folder:
cd frontend
npm install
npm run dev
The frontend development server will start, and you can access the application at localhost server
by default. Make sure to complete the backend setup (as mentioned in step 2) before running the frontend to ensure proper communication between the frontend and backend.
Pushing Changes to GitHub:
Once you have made your changes and finalized your code in the local files, follow these steps to push the changes to GitHub:
Create a new branch for your changes:
git branch <your_branch_name>
Switch to the new branch:
git checkout <your_branch_name>
Add all changes to the staging area:
git add .
Commit the changes with a meaningful commit message:
git commit -m "Your commit message here"
Push the changes to the remote repository (GitHub):
git push origin <your_branch_name>
After pushing the changes, you can create a pull request on GitHub to merge your changes into the main branch or any desired target branch.
Note: Make sure you replace <your_branch_name>
with the actual name you chose for your new branch.