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: docs/ADMIN.md
+32-18
Original file line number
Diff line number
Diff line change
@@ -152,26 +152,26 @@ The body of the POST request is a JSON object with the following fields:
152
152
153
153
By implementing a small webservice or serverless function that creates or destroys a SkyEye instance on demand, the cost of running SkyEye can be significantly reduced. This is particularly useful for servers that are only active for a few hours a week, such as a private squadron server.
154
154
155
-
An example WinSW service definition is provided in the Windows release archive. You can edit this example file to include your webhook URL and the frequencies you want to monitor, then install and run it it using the included WinSW executable:
155
+
An example WinSW service definition is provided in the Windows release archive. You can edit this example file to include your webhook URL and the frequencies you want to monitor, then install and run it it using the included `skyeye-scaler-service.exe` executable:
The scaler is also available as a container image at `ghcr.io/dharmab/skyeye-scaler`. A Linux binary is also provided in the Linux release archive, although without a service definition.
Download the SkyEye release ZIP from the [releases page](https://github.com/dharmab/skyeye/releases) and extract it.
313
313
314
-
Edit `config.yaml` to configure SkyEye as desired. Note that any provided value of `whisper-model` here is ignored because it is overridden in `skyeye-service.yaml`. If you wish to change the whisper.cpp model, edit `skyeye-service.yaml`.
314
+
Edit `config.yaml` to configure SkyEye as desired. Note that any provided value of `whisper-model` here is ignored because it is overridden in `skyeye-service.yml`. If you wish to change the whisper.cpp model, edit `skyeye-service.yml`.
315
315
316
-
If you want SkyEye to automatically start on boot, edit `skyeye-service.yaml` and change `startmode` to "Automatic".
316
+
If you want SkyEye to automatically start on boot, edit `skyeye-service.yml` and change `startmode` to "Automatic".
317
317
318
-
Use the bundled `winsw.exe` to install and start SkyEye:
318
+
Use the bundled `skyeye-service.exe` to install and start SkyEye:
319
319
320
320
```batch
321
321
:: Install SkyEye
322
-
./winsw.exe install skyeye-service.yaml
322
+
./skyeye-service.exe install skyeye-service.yml
323
323
324
324
:: Start SkyEye
325
-
./winsw.exe start skyeye-service.yaml
325
+
./skyeye-service.exe start skyeye-service.yml
326
326
327
327
:: Check if SkyEye is running
328
-
./winsw.exe status skyeye-service.yaml
328
+
./skyeye-service.exe status skyeye-service.yml
329
329
330
330
:: Stop SkyEye
331
-
./WinSW-x6t4.exe stop skyeye-service.yaml
331
+
./skyeye-service-x6t4.exe stop skyeye-service.yml
332
332
333
333
:: Restart SkyEye
334
-
./winsw.exe restart skyeye-service.yaml
334
+
./skyeye-service.exe restart skyeye-service.yml
335
335
336
336
:: Uninstall SkyEye
337
-
./winsw.exe uninstall skyeye-service.yaml
337
+
./skyeye-service.exe uninstall skyeye-service.yml
338
338
```
339
339
340
-
Refer to the [WinSW documentation](https://github.com/winsw/winsw/tree/v2) for more information.
340
+
Refer to the [WinSW documentation](https://github.com/winsw/winsw/tree/v2.12.0) for more information (`skyeye-service.exe` is a renamed `winsw.exe`).
341
341
342
-
Logs will be saved in a `skyeye.log` file in the same directory as `skyeye-service.yaml`
342
+
Logs will be saved in a `skyeye.log` file in the same directory as `skyeye-service.yml`
343
+
344
+
If you want to change the version of SkyEye in the future:
345
+
346
+
```batch
347
+
:: Stop and Uninstall SkyEye
348
+
./skyeye-service.exe stop skyeye-service.yml
349
+
./skyeye-service.exe uninstall skyeye-service.yml
350
+
351
+
:: Download a newer version of SkyEye and replace both skyeye.exe and skyeye-service.yml
0 commit comments