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
- Host: GitHub
- URL: https://github.com/qaware/spring-playground
- Owner: qaware
- Created: 2019-11-19T13:45:25.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-06-03T01:48:39.000Z (over 3 years ago)
- Last Synced: 2025-07-01T11:04:47.606Z (6 months ago)
- Language: TypeScript
- Size: 530 KB
- Stars: 0
- Watchers: 5
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
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
```