-
Notifications
You must be signed in to change notification settings - Fork 1
Installation Instructions
Amol Sangar edited this page Feb 10, 2022
·
3 revisions
This page contains the installation instructions for our project
- NodeJS
- Jenkins (For CI)
- Java 11
- MySql version 8
- MongoDB
- Angular
- Bootstrap
cd ./p1-auth-service
npm install
npm start
cd ./p1-gateway-service
npm install
npm start
- Run the sql file : create.sql using the command line
source <path to create.sql file>
- Once the database and table have been created, run the below command
java -jar <path to SpringBootSearchServiceProject-0.0.1-SNAPSHOT.jar>
cd ./p1-profile-service
npm install
npm start
Install virtual enviroment package
python -m pip install --user virtualenv
Create environment
Windows: py -m venv env
Ubuntu: python3 -m venv env
Activate environment
Windows: .\env\Scripts\activate
Ubuntu: source env/bin/activate
Check if inside the venv
where python
Install packages
- Instal Numpy first (Required to install Py-ART)
pip install numpy
pip install -r requirements.txt
py server.py
Navigate to the Project Directory
cd /p1-ui
Install the dependencies
npm install
Start the server
npm start