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

https://github.com/qaware/spring-playground

A playground project for on-the-job training and learning
https://github.com/qaware/spring-playground

Last synced: 6 months ago
JSON representation

A playground project for on-the-job training and learning

Awesome Lists containing this project

README

          

#CINEMA OF CLASSIC MOVIES
by Livia Kerr

##Run CINEMA from the command line

Start Postgresql using Docker first:

```docker
docker run -ti -p 5432:5432 -e POSTGRES_PASSWORD=mysecretpassword postgres
```
Before you execute:
```
mvn clean install
```

Or:
```
mvn clean install -DskipTests
```

Now execute the application using maven:
```bash
cd application
mvn spring-boot:run
```

Too see the results in your browser, change to ...
```bash
cd frontend
cd cinema
```

... and run:
```bash
npm start
```