https://github.com/amazingustav/stomptheyard
(Unfinished) Once the region is informed, it gives you a perfect playlist for the occasion, considering current temperature.
https://github.com/amazingustav/stomptheyard
java maven postgresql spring-boot spring-data-jpa
Last synced: 3 months ago
JSON representation
(Unfinished) Once the region is informed, it gives you a perfect playlist for the occasion, considering current temperature.
- Host: GitHub
- URL: https://github.com/amazingustav/stomptheyard
- Owner: amazingustav
- Created: 2019-12-27T21:32:36.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-01-03T18:45:40.000Z (over 5 years ago)
- Last Synced: 2025-01-03T16:20:42.588Z (5 months ago)
- Topics: java, maven, postgresql, spring-boot, spring-data-jpa
- Language: Java
- Homepage:
- Size: 1.12 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Stomp the Yard
![]()
An ideal music provider for you in a perfect occasion.
### Requirements
* Java 13
* [Spring Boot with Maven](https://docs.spring.io/spring-boot/docs/2.2.2.RELEASE/maven-plugin/)
* [Spring Data JPA](https://docs.spring.io/spring-boot/docs/2.2.2.RELEASE/reference/htmlsingle/#boot-features-jpa-and-spring-data)
* [PostgreSQL](https://www.postgresql.org/)### How to run
Create an empty database in PostgreSQL named `hiphop` with the user `amazing` and an empty password.
```bash
$ createuser -U postgres -s amazing
$ createdb amazing
$ psql -U amazingamazing-# CREATE DATABASE hiphop;
```Use the Maven Wrapper embedded inside project to build and run your application:
```bash
$ ./mvnw spring-boot:run
```