Skip to content

Local Installation

Hrishikesh Paul edited this page Mar 28, 2021 · 1 revision

scrapbook-ui

  • Port: 4200
$ cd scrapbook-ui
$ npm install
$ npm start

scrapbook-auth-service

  • Port: 5000
$ cd scrapbook-auth-service
$ python3 -m env env # creating a virtual environment
$ source env/bin/activate
$ pip install -r requirements.txt
$ python app.py

scrapbook-session-service

  • Port: 3500
$ cd scrapbook-session-service
$ npm install
$ npm run dev

scrapbook-user-service

  • Port: 3000
$ cd scrapbook-user-service
$ npm install
$ npm run dev

scrapbook-gateway-service

  • Port: 8081
$ cd scrapbook-gateway-service
$ python3 -m env env # creating a virtual environment
$ source env/bin/activate
$ pip install -r requirements.txt
$ python app.py

scrapbook-google-drive-service

  • Port: 9090
$ cd scrapbook-google-drive-service
$ mvn clean install
$ cd target
$ java -jar -Dspring.profiles.active=local googledrive-service-0.0.1-SNAPSHOT.jar

scrapbook-image-service

  • Port: 8080
$ cd scrapbook-image-service
$ mvn clean install
$ cd target
$ java -jar -Dspring.profiles.active=local image-service-0.0.1-SNAPSHOT.jar
Clone this wiki locally