Clone project:
git clone XXXXX
Go inside folder the front folder:
cd front
Install dependencies:
npm install
Launch Front-end:
npm run start;
Build the container:
docker build -t bobapp-front .
Start the container:
docker run -p 8080:8080 --name bobapp-front -d bobapp-front
Go inside folder the back folder:
cd back
Install dependencies:
mvn clean install
Launch Back-end:
mvn spring-boot:run
Launch the tests:
mvn clean install
Build the container:
docker build -t bobapp-back .
Start the container:
docker run -p 8080:8080 --name bobapp-back -d bobapp-back