Skip to content
This repository has been archived by the owner on Mar 15, 2021. It is now read-only.

Commit

Permalink
Merge pull request #9 from IObert/master
Browse files Browse the repository at this point in the history
Update
  • Loading branch information
Marius Obert authored Dec 17, 2019
2 parents ce8d2a3 + 83a66c6 commit daa9687
Show file tree
Hide file tree
Showing 15 changed files with 2,232 additions and 6,123 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules/
17 changes: 17 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {
"strict": "error",
"no-debugger": "error",
"camelcase": "error",
"no-underscore-dangle": "error",
"no-mixed-spaces-and-tabs": "error",
"key-spacing": "error",
"no-irregular-whitespace": "error",
"no-multi-spaces": "error",
"comma-spacing": "error",
}
}
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,16 @@ The application exposes a list of sample entities which represent cities. Each e
3. Wait until the process completed and look for the output line which references the URL of the started app router. Open the displayed URL in a browser.
![INSERT](./docs/deploy-success.png)

Alternativly, you can also just deploy selected modules and skip services by using [partial deployments](https://blogs.sap.com/2019/12/02/cloudfoundryfun-10-partial-deployments-to-cloud-foundry):

```
cf deploy mta_archives/city-explorer-demo-app_1.3.5.mtar \
-m city-cap-router \
-m city-cap-db \
-m city-cap-srv \
-r city-hdi-container​
```


### Local Development
This project consists of several microservices. For local development, each one can be started independently.
Expand Down
Loading

0 comments on commit daa9687

Please sign in to comment.