Skip to content

LePhenix47/Lahouiti_Younes_P10_20042024

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

68 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BobApp

Clone project:

git clone https://github.com/OpenClassrooms-Student-Center/Gerez-un-projet-collaboratif-en-int-grant-une-demarche-CI-CD

Front-end

Go inside folder the front folder:

cd front

Install dependencies:

npm install

Launch Front-end:

npm run start;

Docker

Build the container:

docker build -t bobapp-front .

Start the container:

docker run -p 8080:8080 --name bobapp-front -d bobapp-front

Back-end

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

Docker

Build the container:

docker build -t bobapp-back .

Start the container:

docker run -p 8080:8080 --name bobapp-back -d bobapp-back

About

CI/CD pipeline integration using GitHub Actions

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 49.6%
  • Java 26.5%
  • JavaScript 9.5%
  • HTML 7.8%
  • Dockerfile 3.7%
  • SCSS 2.9%