https://github.com/rellyson/spring-playground-app
A Spring Boot application for testing purposes.
https://github.com/rellyson/spring-playground-app
spring spring-boot spring-mvc
Last synced: 5 months ago
JSON representation
A Spring Boot application for testing purposes.
- Host: GitHub
- URL: https://github.com/rellyson/spring-playground-app
- Owner: rellyson
- Created: 2024-01-09T20:05:43.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-10T12:00:49.000Z (over 2 years ago)
- Last Synced: 2024-01-10T14:04:52.161Z (over 2 years ago)
- Topics: spring, spring-boot, spring-mvc
- Language: Java
- Homepage:
- Size: 72.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Java Playground Application


## Setup
You can install the application dependencies using the command below:
```bash
# Install dependencies with Maven
./mvnw clean install
```
## Running
You can run the application locally using `Maven` or `Docker`.
```bash
# Run via maven
./mvnw clean spring-boot:run
# Build and run with docker
docker build -t java-app .
docker run -p 3000:300 java-app
```
Your application will be available at `http://localhost:3000/api`
after running one of the commands above.
## Useful links
- [Spring Docs](https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#documentation)