Skip to content

Commit 53fc4ae

Browse files
author
Matthew Fisher
committed
Merge pull request #2728 from babarinde/master
[docs] Add multiple config values.
2 parents 8b6e36f + d17b781 commit 53fc4ae

2 files changed

Lines changed: 12 additions & 5 deletions

File tree

docs/reference/api-v1.1.rst

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ Example Request:
452452
Content-Type: application/json
453453
Authorization: token abc123
454454
455-
{"values": {"HELLO": "world"}}
455+
{"values": {"HELLO": "world", "PLATFORM: "deis"}}
456456
457457
Example Response:
458458

@@ -470,7 +470,9 @@ Example Response:
470470
"values": {
471471
"DEIS_APP": "example-go",
472472
"DEIS_RELEASE": "v3",
473-
"HELLO": "world"
473+
"HELLO": "world",
474+
"PLATFORM": "deis"
475+
474476
},
475477
"memory": {},
476478
"cpu": {},
@@ -510,8 +512,9 @@ Example Response:
510512
"app": "example-go",
511513
"values": {
512514
"DEIS_APP": "example-go",
513-
"DEIS_RELEASE": "v4"
514-
},
515+
"DEIS_RELEASE": "v4",
516+
"PLATFORM": "deis"
517+
},
515518
"memory": {},
516519
"cpu": {},
517520
"tags": {},

docs/using_deis/install-client.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,11 @@ Install the latest ``deis`` client for Linux or Mac OS X with:
1818
$ curl -sSL http://deis.io/deis-cli/install.sh | sh
1919
2020
The installer puts ``deis`` in your current directory, but you should move it
21-
somewhere in your $PATH.
21+
somewhere in your $PATH:
22+
23+
.. code-block:: console
24+
25+
$ ln -fs $PWD/deis /usr/local/bin/deis
2226
2327
Proxy Support
2428
-------------

0 commit comments

Comments
 (0)