Skip to content

Latest commit

 

History

History
43 lines (30 loc) · 785 Bytes

README.md

File metadata and controls

43 lines (30 loc) · 785 Bytes

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 [email protected]: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