Skip to content

Commit 5f6b151

Browse files
committed
wip
1 parent d95d958 commit 5f6b151

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,24 @@ A Laravel DebugBar companion app that helps you debug your applications.
44

55
![](https://beyondco.de/github/laravel-debugbar-companion/companion.png)
66

7+
## Installation
8+
9+
You can download the latest version of this application for MacOS, Windows, and Linux on the [releases page](https://github.com/beyondcode/laravel-debugbar-companion/releases).
10+
11+
There is currently an [open PR](https://github.com/barryvdh/laravel-debugbar/pull/1141) on the Laravel DebugBar repository, that explains how to connect the Laravel DebugBar with the companion app.
12+
13+
### Contributing
14+
15+
To get the application running locally, first install all required dependencies using `yarn`.
16+
17+
The application can be started in development mode using:
18+
19+
```
20+
yarn electron:serve
21+
```
22+
23+
This will start the application in a hot-reloading mode, so all changes will be immediately visible within the application.
24+
725
### Security
826

927
If you discover any security related issues, please email [email protected] instead of using the issue tracker.

package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@
1313
"build:osx": "yarn electron:build -p never",
1414
"build:win": "yarn electron:build -p never -- --win --x64 --ia32",
1515
"build:linux": "yarn electron:build -p never -- --linux",
16-
"build:all": "yarn run build:osx && yarn run build:win && yarn run build:linux"
16+
"build:all": "yarn run build:osx && yarn run build:win && yarn run build:linux",
17+
"publish:osx": "yarn electron:build -p always",
18+
"publish:win": "yarn electron:build -- --win --x64 --ia32 -p always",
19+
"publish:linux": "yarn electron:build -p always -- --linux -p always",
20+
"publish:all": "yarn run publish:osx && yarn run publish:win && yarn run publish:linux"
1721
},
1822
"repository": {
1923
"type": "git",

0 commit comments

Comments
 (0)