Skip to content
This repository has been archived by the owner on Sep 14, 2023. It is now read-only.

docs: fix readme example instruction #728

Merged
merged 1 commit into from Mar 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 7 additions & 1 deletion Readme.md
Expand Up @@ -16,14 +16,20 @@ interactions without compromising either performance or ease of use.

## At a Glance

Run the Capi development server.

```sh
deno run -A https://deno.land/x/capi/main.ts
```

Create an import map with the specifier corresponding to your target.

`import_map.json`

```json
{
"imports": {
"@capi/polkadot/": "https://capi.dev/frame/wss/rpc.polkadot.io/@latest/"
"@capi/polkadot/": "http://localhost:4646/frame/wss/rpc.polkadot.io/@latest/"
}
}
```
Expand Down