You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Open the zip file and extract its content to a folder on your local computer. You will have extracted a folder named `cf-sample-app-nodejs-main`.
48
46
49
47
[DONE]
50
48
[ACCORDION-END]
@@ -69,18 +67,23 @@ The host name for your app must be unique within a combination of region and run
69
67
70
68
If someone else is already using that hostname within that region and runtime, you won't be able to deploy your application.
71
69
72
-
1. Add a parameter named `host` to the `manifest.yml` file and provide a unique value. For example, use your birth date or a random number or string or incorporate your user ID:
73
-
74
-

70
+
Add a parameter named `host` to the `manifest.yml` file and provide a unique value. For example, use your birth date or a random number or string. The contents of the file should look something like this when you're done (and don't forget to save your changes!):
75
71
76
-
> The YAML format uses whitespace significantly -- make sure you format this new parameter correctly, as shown.
72
+
```yaml
73
+
---
74
+
applications:
75
+
- name: cf-nodejs
76
+
memory: 192M
77
+
instances: 1
78
+
random-route: false
79
+
host: my-unique-app-name-12345
80
+
```
77
81
78
-
2. Don't forget to save your changes.
82
+
> The YAML format uses whitespace significantly -- make sure you add this new parameter correctly, as shown.
0 commit comments