A Django todo app for managing tasks, and tracking progress. Easy to use and helps you stay organized.
-
Clone the repository and navigate to the project directory
git clone git@github.com:Nyae44/timetune.git cd timetune
-
Create and Activate a Virtual Environment
python3 -m venv env source env/bin/activate # Unix/Mac env\Scripts\activate # Windows python3 -m venv env
-
Install dependencies
pip install -r requirements.txt
-
Make database migrations
python3 manage.py makemigrations then python3 manage.py migrate
-
Run server
cd timetune python3 manage.py runserver