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
Copy file name to clipboardExpand all lines: docs/ui/setup.md
+8-7Lines changed: 8 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -77,8 +77,9 @@ All of the configuration for the UI is **environment-specific**. This lets you h
77
77
78
78
| Setting | Meaning |
79
79
| --------------- | ---------------- |
80
-
| drpcHost | The end point (port included) of your Web Service machine that is talking to the Bullet backend |
81
-
| drpcNamespace | The path fragment on your Web Service running on your ```drpcHost```|
80
+
| queryHost | The end point (port included) of your Web Service machine that is talking to the Bullet backend |
81
+
| queryNamespace | Any qualifiers you have after your host and port on your Web Service running on your ```queryHost```|
82
+
| queryPath | The path fragment after the ```queryNamespace``` on your Web Service running on your ```queryHost```|
82
83
| schemaHost | The end point (port included) of your Web Service machine that is serving your schema in the JSON API format (see [Web Service setup](../ws/setup.md) for details.)|
83
84
| schemaNamespace | The path fragment on your schema Web Service running on the ```schemaHost```. There is no ```schemaPath``` because it **must** be ```columns``` in order for the UI to be able fetch the column resource (the fields in your schema).|
84
85
| modelVersion | This is used an indicator to apply changes to the stored queries, results etc. It is monotonically increasing. On startup, changes specified in ```migrations``` will be applied if the old modelVersion is not present or is < than this number |
@@ -127,9 +128,9 @@ that are the same as the [default backend settings](https://github.com/yahoo/bul
127
128
```json
128
129
{
129
130
"default": {
130
-
"drpcHost": "https://foo.bar.com:4443",
131
-
"drpcNamespace": "bullet/api",
132
-
"drpcPath": "drpc",
131
+
"queryHost": "https://foo.bar.com:4443",
132
+
"queryNamespace": "bullet/api",
133
+
"queryPath": "drpc",
133
134
"schemaHost": "https://foo.bar.com:4443",
134
135
"schemaNamespace": "bullet/api",
135
136
"helpLinks": [
@@ -180,7 +181,7 @@ You can add more properties for each environment you have the UI running on and
180
181
181
182
!!! note "CORS"
182
183
183
-
All your Web Service endpoints must support CORS (return the right headers) in order for the UI to be able to communicate with it. The Bullet Web Service already does this for the DRPC and columns endpoints.
184
+
All your Web Service endpoints must support CORS (return the right headers) in order for the UI to be able to communicate with it. The Bullet Web Service already does this for the Query and Schema endpoints.
184
185
185
186
### Example
186
187
@@ -189,7 +190,7 @@ To cement all this, if you wanted an instance of the UI in your CI environment,
0 commit comments