Skip to content

NAHIAN-19/Todo-List-Django

Repository files navigation

Todo List Web App

Create Task

Table of Contents

💻 Tech Stack:

Python Django SQLite JavaScript HTML5

Installation

Cloning from GitHub Repository

To get started with the Todo_List Django Web App, you can clone the repository from GitHub using the following steps:

  1. Clone the repository:

    git clone https://github.com/NAHIAN-19/Todo-List-Django.git
    
  2. Install the GTK Installer

  3. Navigate to the project folder:

    cd Todo_List
    
  4. Create and activate a virtual environment (optional but recommended):

    py -m venv myworld
    myworld\Scripts\activate.bat
  5. Install project dependencies:

    pip install -r requirements.txt
    
  6. Run database migrations:

    python manage.py makemigrations
    python manage.py migrate
    
  7. Create a superuser account (for admin access)

    python manage.py createsuperuser
    
  8. Start the development server:

    python manage.py runserver
    
  9. Open your web browser and go to http://localhost:8000 to access the Todo_List Django Web App.

Installing from ZIP Archive

  1. Download the zip file Todo_List.zip
  2. Extract the ZIP archive to your desired location on your computer.
  3. Navigate to the project folder: --Right click on the project folder and 'Copy as path' and paste the path like below
    cd project_path
  4. Continue with steps 3 to 8 from the "Cloning from GitHub Repository" section to set up and run the project

Features

The Todo_List Django Web App offers the following features:

  • Task Management: Easily add, edit, and delete tasks.
  • Task Prioritization: Assign priority levels to tasks.
  • Task Categorization: Divide tasks in different categories
  • User Authentication: Secure account management.
  • Admin Dashboard: Access admin dashboard http://localhost:8000/admin/ to manage users and tasks.
  • Profile Managemet: Change user details(photo,email,pass,name etc).
  • Export Task Details: Download PDF / CSV file of you tasks.
  • Dark Mode: Trigger Dark theme for awesome experience.

Contributing

We welcome contributions to improve the Todo_List Django Web App. If you'd like to contribute, please follow these guidelines:

  1. Fork the repository.

  2. Create a new branch for your feature or bug fix.

  3. Make your changes and test them thoroughly.

  4. Submit a pull request with a clear description of your changes.

  5. Ensure your code follows best practices and includes necessary tests if applicable.

License

This project is licensed under the MIT License. See the LICENSE file for details.