This IT task manager site allows you to track tasks, users, and positions. You can add, delete, update, and search information using a user-friendly interface
Library project deployed to Render
-
Open Terminal and open folder to clone project in.
-
Clone repository into a desirable folder:
https://github.com/OlehShumov/task_manager.git
-
Open cloned folder in terminal
-
If you don't have pip installed install it here.
-
Create and activate Virtual environment:
Windows
python -m venv venv
venv\Scripts\activate
MacOS
python3 -m venv venv
source venv/bin/activate
-
Open cloned folder and install needed requirements using:
pip install -r requirements.txt
-
Make migrations and migrate:
python manage.py makemigrations
python manage.py migrate
-
Install database fixture:
python manage.py loaddata data.json
-
Run server:
python manage.py runserver
-
Go to http://127.0.0.1:8000/
-
Test user:
username: test
password: 1234TEST