Skip to content

Commit 1f16cc8

Browse files
author
Tobias Fuhrimann
committed
use correct filetype for highlightjs
1 parent 1f4facf commit 1f16cc8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dependencies.html.md.erb

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Once dependencies are installed, you will be ready to run your app locally.
6363

6464
Upon running `cf push`, we will also push our whole dependencies folder `node_modules`. Since Cloud Foundry runs `npm install` anyways, this is redundant and should be omitted to save bandwidth and even more importantly: time. You can create a `.cfignore` file which works just like a `.gitignore` file and which tells Cloud Foundry what files should be excluded when pushing. Let's create a `.cfignore` file and exclude the `node_modules` folder:
6565

66-
```
66+
```txt
6767
node_modules
6868
```
6969

manifest.html.md.erb

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ owner: Tobias Fuhrimann
77

88
It's tedious to keep having to specify the app name and other variables each time we push our app. That's where a `manifest.yml` file comes in handy. It holds all the configuration for our app so that Cloud Foundry will know what to do with it. Create a `manifest.yml` file in the root folder of your app and add the following content (don't forget to replace the "my-random-hostname" with your creative hostname again):
99

10-
```YAML
10+
```yaml
1111
---
1212
applications:
1313
- name: my-node-app

0 commit comments

Comments
 (0)