- Task Manager will handle all possible problems during product development in your team.
- Everyone from the team can create, update, delete Task.
- Everyone from the team can assign Task to team-members.
- Everyone from the team can set a deadlines and mark the Task as done.
Task manager project deployed to Render
- login: Admin
- password: Admin1234
-
Open the terminal and navigate to the folder where you want to clone the repository.
cd path/to/your/directory
-
Use the git clone command to clone the repository.
git clone repository_url
-
Go to the project directory.
cd task_manager_project
-
Create and activate a virtual environment:
python -m venv venv
- for Windows:
.\venv\Scripts\activate
- for Linux/Mac:
source venv/bin/activate
-
Use pip to install the requirements.
pip install -r requirements.txt
-
Apply the migrations.
python manage.py migrate