https://github.com/janszewczyk/my-storage-server
https://github.com/janszewczyk/my-storage-server
hibernate java-13 jwt-token modelmapper oauth2-authentication oauth2-springboot postresql spring spring-boot
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/janszewczyk/my-storage-server
- Owner: JanSzewczyk
- Created: 2020-05-05T21:01:48.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-06-20T18:32:08.000Z (almost 3 years ago)
- Last Synced: 2025-07-25T12:21:07.539Z (11 months ago)
- Topics: hibernate, java-13, jwt-token, modelmapper, oauth2-authentication, oauth2-springboot, postresql, spring, spring-boot
- Language: Java
- Size: 212 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# my-storage
## Table of contents
* [General info](#general-info)
* [Dependencies](#dependencies)
* [Setup](#setup)
## General info
My Storage is an application for warehouse management.
Allows you to create a certain number of warehouses assigned to owners
who can employ and create employees assigned to the warehouse.
## Dependencies
#### Dependencies used to create this application:
* spring-boot-starter-data-jpa 2.2.6.RELEASE
* spring-boot-starter-actuator 2.2.6.RELEASE
* spring-boot-starter-security 2.2.6.RELEASE
* spring-boot-starter-web 2.2.6.RELEASE
* spring-boot-starter-hateoas 2.2.6.RELEASE
* spring-security-jwt 1.0.7.RELEASE
* spring-security-oauth2 2.1.0.RELEASE
* modelmapper 2.3.6
* postgresql
* lombok
## Setup
### Build Spring Boot Project with Maven
```
$ maven package
$ mvn install
```
### Run Spring Boot app with java -jar command
```
$ java -jar target\my-storage-0.1.1.jar
```
### Run Spring Boot app using Maven
```
$ mvn spring-boot:run
```