/timetune

A Django todo app for managing tasks, and tracking progress. Easy to use and helps you stay organized.

Primary LanguagePythonMIT LicenseMIT

timetune

A Django todo app for managing tasks, and tracking progress. Easy to use and helps you stay organized.

Quick Start Guide

  1. Clone the repository and navigate to the project directory

    git clone git@github.com:Nyae44/timetune.git
    cd timetune
  2. Create and Activate a Virtual Environment

    python3 -m venv env
    source env/bin/activate  # Unix/Mac
    env\Scripts\activate  # Windows
    python3 -m venv env
  3. Install dependencies

    pip install -r requirements.txt
  4. Make database migrations

    python3 manage.py makemigrations
    then
    python3 manage.py migrate
  5. Run server

    cd timetune
    python3 manage.py runserver