Allow user to create a new task, edit a task, delete a task and view all the task.
To clone and run this application, you'll need Git installed on your computer. From your command line:
# Clone this repository
$ git clone https://github.com/mdsheerazaziz/taskapp.git
# Go into the repository
$ cd taskapp
# Install dependencies
$ pip install -r requirement.txt
# Create Super user
$ python manage.py superuser
# Run the app
$ python manage.py runserver
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
Hosted on heroku at https://rocky-island-61052.herokuapp.com/login/
- Username: demouser, Password: demouser
- Username: demouser1, Password: demouser1
- Create a superuser
- Superuser can create other user accounts
- User will see his dashboard with list of tasks
- User has option to add a new task, edit a task and delete a task
- If a user clicks add a new task, he can specify the description and task name and click save.
- Once the task is saved it will appear on dashboard
- User can edit the task by clicking edit.
- To delete the task he can click delete.
MIT