Kryptofly / Task-Manager

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TaskManager

TaskManager is a simple Python-based web application using Django that allows users to create, read, update, and delete tasks.

Features

  • Create new tasks.
  • View all tasks.
  • Edit existing tasks.
  • Delete tasks.

Installation

  1. Clone the repository:

    git clone https://github.com/YOUR_USERNAME/TaskManager.git
    cd TaskManager
  2. Create a virtual environment and activate it:

    python -m venv venv
    source venv/bin/activate  # On Windows use `venv\Scripts\activate`
  3. Install the required packages:

    pip install -r requirements.txt
  4. Apply migrations:

    python manage.py migrate
  5. Run the application:

    python manage.py runserver
  6. Open your web browser and go to http://127.0.0.1:8000.

License

This project is licensed under the MIT License.

About

License:MIT License


Languages

Language:Python 62.2%Language:HTML 37.8%