A straightforward web application, allowing you to save your daily chores so you won't forget anything.
Be a part of our Community on Discord 🚀
This project is a TODO list app, with nice animations. It allows the users to create, delete or modify tasks. The user can add planned tasks or delete tasks that are not needed. Also, the app has the ability to indicate if a task is completed or not, which is achieved by differentiated opacity between completed and pending tasks.
- Track you daily tasks
- Add new tasks
- Mark tasks as Completed
- Delete Completed tasks
- Add voice notes to be appear as tasks
- Lovely animations to enhance user experience
- HTML
- Javascript
- CSS
Find the application runnning at: https://rick-mad-lab.github.io/Todolist/
To run the project locally,
- Clone the project
- Browse to the project directory on your system.
- Open index.html
You'll find the project running in your browser.. Enjoy!
If you wish to contribute, we highly recommend following the guidelines mentioned below.
1. Fork this repository.
2. Clone your forked copy of the project.
git clone git@github.com:Rick-mad-lab/Todolist.git
3. Navigate to the project directory.
cd Todolist
4. Create a new branch:
git checkout -b YourBranchName
5. Make changes in source code.
6. Stage your changes and commit
git add .
git commit -m "<your_commit_message>"
7. Push your local commits to the remote repo.
git push origin YourBranchName
8. Create a PR
Note: If anyone contributes to this repository, the changes will not be reflected in your local repository. For that:
9. Setup a reference(remote) to the original repository to get all the changes from the remote.
git remote add upstream git@github.com:Rick-mad-lab/Todolist.git
10. Check the remotes for this repository.
git remote -v
11. Fetching from the remote repository will bring in its branches and their respective commits.
git fetch upstream
12. Make sure that you're on your master branch.
git checkout main
13. Now that you have fetched the upstream repository, you can merge its changes into our local branch. This will bring that branch into sync with the upstream, without losing the local changes.
git merge upstream/main
We welcome all kinds of positive contributions helping us to improve and grow the project.
If you wish to contribute, you can work on any issues listed here or create one on your own. After adding your code, please send us a Pull Request.
Please read
Guidelines for Contributing
andCODE OF CONDUCT
to understand the process for submitting pull requests to us and comply to code of conduct.
© 2022 Sharanya Mitra and contributors
This project is licensed under the MIT license.