An open API service indexing awesome lists of open source software.

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.

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 amazing

amazing-# CREATE DATABASE hiphop;
```

Use the Maven Wrapper embedded inside project to build and run your application:

```bash
$ ./mvnw spring-boot:run
```