Commit 2d8f3574 authored by Kutzner's avatar Kutzner 🤸
Browse files

create documentation

parent a845b23d
# ShoppingApp
> **_INFO:_** Shopping list project with Spring Boot and REST
## Table of Contents
1. [Run Application (MAVEN)](#run-application-maven)
2. [Run Application (DOCKER)](#run-application-docker)
3. [How to use Application](#how-to-use-application)
## Run Application (MAVEN)
Clone Repository:
```sh
git clone https://transfer.hft-stuttgart.de/gitlab/kebidge/shopping-app.git
```
Build Application:
```sh
mvn clean package
```
Run Spring-Boot Application:
```sh
mvn spring-boot:run
```
Application starts on port `8181`. Open in Browser:
```sh
localhost:8181
```
## Run Application (DOCKER)
Run Docker Image
```sh
docker run -p 8181:8181 kebidge/shopping-app:jib
```
Application starts on port `8181`. Open in Browser:
```sh
localhost:8181
```
### Image Details
tbd.
## How to use Application
tbd.
[//]: # (reference links)
[Google Jib]: <https://cloud.google.com/java/getting-started/jib>
\ No newline at end of file
......@@ -4,6 +4,6 @@ spring.datasource.password=password
spring.jpa.hibernate.ddl-auto=update
server.port = 8081
server.port = 8181
logging.level.de.hftstuttgart=INFO
\ No newline at end of file
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment