Skip to content

Latest commit

 

History

History
59 lines (44 loc) · 1.27 KB

README.md

File metadata and controls

59 lines (44 loc) · 1.27 KB

ShopSafe 🛒

A web application for informed and safe shopping during COVID-19.

Contributors

Mentors

  • Aditi Jain
  • Carl Atupem

Static Demo

Development Information

Formatting Java Code

cd shopsafe-backend/
mvn com.theoryinpractise:googleformatter-maven-plugin:format

Running Development Server

// Install Angular
npm install -g @angular/cli

// Build Frontend
cd shopsafe-frontend/
ng build --delete-output-path=false

// Run Local Web Application 
cd ../shopsafe-backend/
mvn package appengine:run 

// Add -Dmaven.test.skip to skip tests

Deployment Instructions

// Install Angular
npm install -g @angular/cli

// Build Frontend
cd shopsafe-frontend/
ng build --prod --delete-output-path=false

// Deploy Web Application 
cd ../shopsafe-backend/
mvn package appengine:deploy

// To skip Java tests, add
-Dmaven.test.skip