This is a full-stack web application built for demonstrating DevSecOps practices. The application consists of a React frontend and a Spring Boot backend that provides a simple data retrieval service.
- React.js - A JavaScript library for building user interfaces
- Created with Create React App
- Runs on port 3000 by default
- Java 17
- Spring Boot 3.1.5
- Spring Security
- Maven for dependency management
- JavaFaker for generating mock data
- Lombok for reducing boilerplate code
The frontend is a React application that displays posts retrieved from the backend API.
The backend is a Spring Boot application that provides REST endpoints:
/
- Returns basic application information/posts
- Returns a list of generated posts (accepts acount
parameter)
- Java 17 or higher
- Node.js and npm
- Maven
- Navigate to the backend directory:
cd backend
- Build the application:
mvn clean install
- Run the application:
The backend will run on port 8080 by default.
mvn spring-boot:run
- Navigate to the frontend directory:
cd frontend
- Install dependencies:
npm install
- Start the development server:
npm start
- The React app will run on port 3000 by default.
Once both the frontend and backend are running, you can access the application at http://localhost:3000. The frontend will communicate with the backend to retrieve and display posts.
- Spring Security: The Spring Boot app uses Spring Security to protect the application.
- HTTP Headers: Security-related HTTP headers are configured to protect against common web vulnerabilities.
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.