Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

Social App - Spring Boot Application

This is a Spring Boot application scaffolded as part of the GitHub Copilot Vibe Coding Workshop.

Project Details

  • Package Name: com.contoso.socialapp
  • Artifact ID: socialapp
  • Group ID: com.contoso
  • Package Type: jar
  • Java Version: OpenJDK 21
  • Build Tool: Gradle 8.5

Dependencies

  • Spring Web
  • Spring Boot Actuator
  • Lombok

Configuration

  • Port: 8080
  • CORS: Enabled for all origins, methods, and headers

Building the Application

./gradlew build

Running the Application

./gradlew bootRun

The application will start on http://localhost:8080.

Available Endpoints

  • Health Check: http://localhost:8080/actuator/health
  • Actuator: http://localhost:8080/actuator

Testing

Run tests with:

./gradlew test