https://github.com/chambrin/projet5
https://github.com/chambrin/projet5
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/chambrin/projet5
- Owner: chambrin
- Created: 2025-04-10T08:40:23.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-04-10T08:40:27.000Z (about 1 year ago)
- Last Synced: 2025-08-31T05:55:40.873Z (10 months ago)
- Language: Java
- Size: 1.93 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Project Setup and Commands
## Prerequisites
- Node.js and npm/yarn (frontend)
- Java 1.8 and Maven (backend)
## Backend (Java Spring Boot)
### Install dependencies
```sh
mvn clean install
```
### Run backend
```sh
mvn spring-boot:run
```
### Run tests
```sh
mvn clean test
```
### Generate test coverage report
```sh
mvn clean test jacoco:report
```
## Frontend (Angular)
### Install dependencies
```sh
npm install
# or
yarn install
```
### Run frontend
```sh
npm start
```
Application runs at http://localhost:4200
### Run unit tests
```sh
npm test
# Watch mode
npm run test:watch
# With coverage
npm run test -- --coverage
```
### Run E2E tests with Cypress
```sh
# Open Cypress UI
npm run cypress:open
# Headless mode
npm run cypress:run
# Generate E2E coverage
npm run e2e:coverage
```