- movie-list-api
cd ./movie-list-api
../gradlew bootRun
-
movie-list-store-service
-
For in memory store
```bash
cd ./movie-list-store-service
../gradlew bootRun
```
- For cassandra store
```bash
cd ./movie-list-store-service
```
Edit the src/main/resources/application.properties to set the proper cassandra.contactPoint address, then
```bash
PROFILE=cassandra ../gradlew/gradlew bootRun
```
- movie-list-ui
cd ./movie-list-ui
npm install
npm start