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
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,8 +13,8 @@ npm run dev
13
13
### Mobile Development
14
14
Chisel Editor uses Capacitor.js to create mobile apps on Android and iOS. To develop mobile app locally, run the following:
15
15
```bash
16
-
# Development with Live Reload
17
-
npx cap run android -l --host [your_LAN_host_that_your_phone_can_access]
16
+
# Development with Live Reload. You need to first run a local development server as specified above.
17
+
npx cap run android -l --host [your_LAN_server_that_your_phone_can_access]
18
18
# Production
19
19
npm run android
20
20
```
@@ -29,9 +29,9 @@ npm run desktop-dev
29
29
npm run desktop-build
30
30
```
31
31
32
-
If you run `npm run desktop-build` for a production build, you can file an executable file inside `out-desktop`.
32
+
If you run `npm run desktop-build` for a production build, you can find an executable file inside `out-desktop`.
33
33
34
34
### VSCode Extension Development
35
35
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.
36
36
37
-
Note that you will also need to run the Nextjs server locally during development.
37
+
Note that you will also need to run the Nextjs server locally during development.
0 commit comments