8000 GitHub - MattaKacz/ToDo_app
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

MattaKacz/ToDo_app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Table of Contents


Overview

This project is a simple web application built with Django that helps users manage their daily tasks. It allows users to add new tasks, mark them as completed, edit existing tasks, and delete tasks they no longer need. Designed with scalability in mind, the application serves as a solid foundation for further enhancements and feature additions.​

Project Structure

└── ToDo_app.git/
    ├── db.sqlite3
    ├── manage.py
    ├── templates
    │   ├── edit_task.html
    │   └── home.html
    ├── todo
    │   ├── __init__.py
    │   ├── __pycache__
    │   ├── admin.py
    │   ├── apps.py
    │   ├── migrations
    │   ├── models.py
    │   ├── tests.py
    │   ├── urls.py
    │   └── views.py
    └── todo_main
        ├── __init__.py
        ├── __pycache__
        ├── asgi.py
        ├── settings.py
        ├── urls.py
        ├── views.py
        └── wsgi.py

Prerequisites

This project requires the following dependencies:

  • Programming Language: Python

Installation

Build ToDo_app.git from the source and intsall dependencies:

  1. Clone the repository:

    ❯ git clone https://github.com/MattaKacz/ToDo_app.git
  2. Navigate to the project directory:

    cd ToDo_app
  3. Create and activate virtual env:

    ❯ python -m venv venv
    source venv/bin/activate  # Unix/macOS
    venv\Scripts\activate     # Windows
  4. Install the dependencies:

    ❯ pip install -r requirements.txt
  5. Apply migrations:

    ❯ python manage.py migrate
  6. Run the development server:

    ❯ python manage.py runserver
    
  7. Open the application in your browser:

    Go to http://127.0.0.1:8000/ to see the running application.
    

Future Enhancements

The project is designed with scalability in mind. Potential future developments include:

  • User Authentication:
    Implementing a registration and login system to allow users to manage their own per sonal task lists.
  • Task Categories:
    Adding the ability to group tasks into categories or projects.
  • Priorities and Deadlines:
    Allowing tasks to be assigned priority levels and deadlines for better organization.
  • Notifications:
    Integrating a notification system (e.g., email) to remind users about upcoming deadlines.
  • Responsive Design:
    Adapting the user interface for optimal experience on mobile devices.


About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0