Skip to content

Latest commit

 

History

History
64 lines (43 loc) · 1.14 KB

README.md

File metadata and controls

64 lines (43 loc) · 1.14 KB

codecov Node.js CI Java CI with Maven

About

Gcard - Software Engineering Development Project

Directory Structure

Gcard/
├─ backend/ <- Spring Boot
├─ frontend/ <- React.js

Installation

Spring Boot

  1. Change directory to ./backend
cd ./backend
  1. Copy .env file and set the value
cp .env.example .env
  1. Install maven dependencies
mvn install
  1. Run on localhost:8080
mvn spring-boot:run

React.js

  1. Change directory to ./frontend
cd ./frontend
  1. Install npm packages
npm install
  1. Run on localhost:3000
npm start