Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 1f63f0a

Browse files
committed
Merge branch 'master' of github.com:hitman249/wine-launcher
2 parents 391e459 + 588f155 commit 1f63f0a

1 file changed

Lines changed: 38 additions & 0 deletions

File tree

README.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,3 +142,41 @@ Before you start, be sure to read the **Game Settings**^
142142

143143
<br>
144144
</details>
145+
146+
147+
## Debugging
148+
149+
1. You can run application in the debug mode
150+
> In this mode the dev tools will be available
151+
152+
```bash
153+
env debug=1 ./start
154+
```
155+
156+
2. Building the project
157+
158+
```bash
159+
npm i
160+
npm run build
161+
```
162+
> When build finishes, `dist` directory will have executable file `start`
163+
164+
3. Development
165+
166+
> Step 1. Launch Vue
167+
168+
```bash
169+
npm run serve
170+
```
171+
172+
> Step 2. Run application in debug mode
173+
174+
```bash
175+
env debug=1 ./start
176+
```
177+
178+
> Step 3. In the opened dev tools bar, go to
179+
180+
```js
181+
app.href('http://localhost:8080')
182+
```

0 commit comments

Comments
 (0)