- clone the project with git clone [email protected]:KDRUCSProjects/bridging-business-system-3023103.git.
- Open the project folder in vscode. and open terminal in vscode and follow the instructions below
- install "postgresql" RDBMS and Pgadmin for postgresql GUI.
- create user as "business" with password "brdging@123"
- create database as "Bridging-Businesses" and assign "business" as manager.
-
create virtual environment with python3 -m venv venv
-
activate the virtual environment with source venv/bin/activate in the terminal.
-
install requirment.txt for installing required backend packges
-
type python manage.py migrate to apply migrations to the database. # for now it is not working.
-
type python manage.py runserver should run the the backend without any error.
- for installing frontend dependencies type "npm install"
- for running frontend server type "npm start"