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: README.md
+29Lines changed: 29 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,9 @@ This workshop is designed to help you get started with vector search using Couch
9
9
10
10
The entire workshop will be run from inside a GitHub Codespace, which is a cloud-based development environment that is pre-configured with all the necessary tools and services. You don't need to install anything on your local machine.
11
11
12
+
> [!IMPORTANT]
13
+
> Key information needed for running this workshop in GitHub Codespaces can be found [here](#running-in-github-codespaces).
14
+
12
15
## Prerequisites
13
16
14
17
- A GitHub account
@@ -22,6 +25,7 @@ The entire workshop will be run from inside a GitHub Codespace, which is a cloud
22
25
4.[Transform Data](#transform-data)
23
26
5.[Index Data](#index-data)
24
27
6.[Search Data](#search-data)
28
+
7.[Running in GitHub Codespaces](#running-in-github-codespaces)
25
29
26
30
## Video Walkthrough
27
31
@@ -234,3 +238,28 @@ curl -X POST http://localhost:3000/search \
234
238
-d '{"q": "your_query_item"}'
235
239
```
236
240
241
+
## Running in GitHub Codespaces
242
+
243
+
When working in a GitHub Codespaces environment, there are some differences to be aware of, especially for the Couchbase Shell commands.
244
+
245
+
* The `cbsh` binary is not available in your `PATH` by default in Codespaces. Instead, you can find it in the following directory within your workspace:
246
+
247
+
```bash
248
+
couchbase-shell/target/debug/cbsh
249
+
```
250
+
251
+
To use `cbsh`in your Codespace, provide the full path wwhen running commands. For example:
0 commit comments