Skip to content

Commit fb41878

Browse files
authored
Merge pull request #10 from supabase-community/bo/docs/cli-version
docs: add CLI version requirement for local development
2 parents c713586 + 087411c commit fb41878

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ limit 5;
203203

204204
### Set up
205205

206-
To develop Wasm FDW locally with Supabase, [Supabase CLI](https://supabase.com/docs/guides/cli/getting-started) is needed, check its docs for more installation details. After the CLI is installed, start the Supabase services:
206+
To develop Wasm FDW locally with Supabase, [Supabase CLI](https://supabase.com/docs/guides/cli/getting-started)(version >= 1.187.10) is needed, check its docs for more installation details. After the CLI is installed, start the Supabase services:
207207

208208
```bash
209209
supabase start
@@ -223,6 +223,12 @@ And then run the script to build the Wasm FDW package and copy it to Supabase da
223223
Visit SQL Editor at http://127.0.0.1:54323/project/default/sql/1, create foreign server and foreign table like below,
224224

225225
```sql
226+
create extension if not exists wrappers with schema extensions;
227+
228+
create foreign data wrapper wasm_wrapper
229+
handler wasm_fdw_handler
230+
validator wasm_fdw_validator;
231+
226232
create server example_server
227233
foreign data wrapper wasm_wrapper
228234
options (

0 commit comments

Comments
 (0)