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
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,8 +36,12 @@ To get started:
36
36
* Clone this repo.
37
37
*`npm install`
38
38
* To build & run the electron app locally:
39
-
*`npm start` - runs the desktop app, downloading the latest server & using the UI from `app.httptoolkit.tech`.
40
-
*`npm run start:dev` - runs the desktop app, but using the UI from `localhost:8080` (i.e. assuming you're running your own UI).
39
+
*`npm start` - runs the desktop app, downloading the latest live server & using the live UI from `app.httptoolkit.tech`.
40
+
* This is useful if you're working on just the desktop app, and want to see your changes with the real live environment.
41
+
*`npm run start:dev` - runs the desktop app, with no built-in server using the UI from `localhost:8080`
42
+
* This effectively assumes you're bringing your own working UI & server, and is useful for working on this.
43
+
* You can start both from the [UI project](https://github.com/httptoolkit/httptoolkit-ui) with just `npm start`, to work on the UI within the desktop app.
44
+
* Alternatively, you can run `npm start` in the [server project](https://github.com/httptoolkit/httptoolkit-server), and `npm run start:web` in the UI project, to work on the server or both.
41
45
* To build distributable packages:
42
46
*`npm run make` - this will attempt to build & package the desktop app for your current platform
0 commit comments