This web application for collaborative project development includes project and task management, real-time communication authentication, and security ...
You can try the demo version of the project at this link.
Instructions for installing the project on your local machine.
-
Clone the repository:
git clone https://github.com/I-L-A-M-A-N/diploma_project.git
-
Navigate to the project directory:
cd diploma_project/
-
Create a virtual environment:
python -m venv venv
-
Activate the virtual environment:
- On Windows:
venv\Scripts\activate
- On Unix or MacOS:
source venv/bin/activate
- On Windows:
-
Install the dependencies:
- On Windows:
pip install -r requirements.txt
- On Unix:
pip3 install -r requirements.txt
-
Create database:
python3 from manage import app, db app.app_context().push() db.create_all() exit()
-
Start the project:
- On Windows:
python manage.py
- On Unix:
python3 manage.py