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
Chisel Editor is an editor designed to build and work with AI more naturally on cross-platform devices.
2
+
Pulse Editor is an editor designed to build and work with AI more naturally on cross-platform devices.
3
3
4
4
## Getting Started -- User Guide
5
5
### Web Client
6
-
There is a web deployment at https://chisel.claypulse.ai
6
+
There is a web deployment at https://pulse.claypulse.ai
7
7
### Mobile Client
8
8
Android client is available in release page.
9
9
>Current we only support Android, although it is technically possible to have an iOS build (see developer guide below).
10
10
### Desktop Client
11
11
Linux, MacOS, Windows clients are available in release page.
12
12
>Only Windows is tested in alpha release.
13
13
### VSCode Extension
14
-
A VSCode Webview Extension with limited features is available [here](https://marketplace.visualstudio.com/items?itemName=shellishack.chisel-editor).
14
+
A VSCode Webview Extension with limited features is available [here](https://marketplace.visualstudio.com/items?itemName=shellishack.pulse-editor).
15
15
16
16
17
17
## Getting Started -- Development Guide
18
18
### Web Development
19
-
Chisel Editor uses Next.js as the frontend (and backend -- TBD).
19
+
Pulse Editor uses Next.js as the frontend (and backend -- TBD).
20
20
You can get started with local development by running:
21
21
```bash
22
22
npm run dev
23
23
```
24
24
25
25
### Mobile Development
26
-
Chisel Editor uses Capacitor.js to create mobile apps on Android and iOS. To develop mobile app locally, run the following:
26
+
Pulse Editor uses Capacitor.js to create mobile apps on Android and iOS. To develop mobile app locally, run the following:
27
27
```bash
28
28
# Development with Live Reload. You need to first run a local development server as specified above.
29
29
npx cap run android -l --host [your_LAN_server_that_your_phone_can_access]
@@ -32,7 +32,7 @@ npm run android
32
32
```
33
33
34
34
### Desktop Development
35
-
Chisel Editor uses Electron.js to create desktop apps on Windows, Mac and Linux. To develop desktop app locally,
35
+
Pulse Editor uses Electron.js to create desktop apps on Windows, Mac and Linux. To develop desktop app locally,
36
36
run:
37
37
```bash
38
38
# Development
@@ -44,6 +44,6 @@ npm run desktop-build
44
44
If you run `npm run desktop-build` for a production build, you can find an executable file inside `out-desktop`.
45
45
46
46
### VSCode Extension Development
47
-
Chisel Editor uses VSCode Webview API to create a VSCode Extension. To develop VScode Extension locally, open the `vscode-extension` in a separate VSCode window. Then press F5 to launch debug task.
47
+
Pulse Editor uses VSCode Webview API to create a VSCode Extension. To develop VScode Extension locally, open the `vscode-extension` in a separate VSCode window. Then press F5 to launch debug task.
48
48
49
49
Note that you will also need to run the Nextjs server locally during development.
0 commit comments