mirror of https://github.com/winsw/winsw
Revise docs for 3.0.0-alpha.5 (#689)
* Revise docs for 3.0.0-alpha.5 * Revise docs for 3.0.0-alpha.5pull/704/head v3.0.0-alpha.5
parent
fa7c00a3d0
commit
c24ca31aae
|
@ -75,7 +75,7 @@ Most commands require Administrator privileges to execute. WinSW will prompt for
|
||||||
## Documentation
|
## Documentation
|
||||||
|
|
||||||
* [Get started](docs/installation.md)
|
* [Get started](docs/installation.md)
|
||||||
* [Migrate to WinSW 3.x](docs/migrate-to-3-x)
|
* [Migrate to WinSW 3.x](docs/migrate-to-3-x.md)
|
||||||
* Configuration:
|
* Configuration:
|
||||||
* [XML configuration file](docs/xml-config-file.md)
|
* [XML configuration file](docs/xml-config-file.md)
|
||||||
* [Logging and error reporting](docs/logging-and-error-reporting.md)
|
* [Logging and error reporting](docs/logging-and-error-reporting.md)
|
||||||
|
|
|
@ -247,9 +247,15 @@ Draws the process tree associated with the service.
|
||||||
### Usage
|
### Usage
|
||||||
|
|
||||||
```console
|
```console
|
||||||
winsw dev ps [<path-to-config>]
|
winsw dev ps [<path-to-config>] [-a|--all]
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Options
|
||||||
|
|
||||||
|
- `-a|--all`
|
||||||
|
|
||||||
|
Optional. Draws the process tree associated with all services.
|
||||||
|
|
||||||
## `dev kill` command
|
## `dev kill` command
|
||||||
|
|
||||||
Terminates the service if it has stopped responding.
|
Terminates the service if it has stopped responding.
|
||||||
|
|
|
@ -40,6 +40,9 @@ All options in other sections are optional
|
||||||
<!-- ID of the service. It should be unique accross the Windows system-->
|
<!-- ID of the service. It should be unique accross the Windows system-->
|
||||||
<id>myapp</id>
|
<id>myapp</id>
|
||||||
|
|
||||||
|
<!-- Path to the executable, which should be started -->
|
||||||
|
<executable>%BASE%\myExecutable.exe</executable>
|
||||||
|
|
||||||
<!-- Display name of the service -->
|
<!-- Display name of the service -->
|
||||||
<!--
|
<!--
|
||||||
<name>MyApp Service (powered by WinSW)</name>
|
<name>MyApp Service (powered by WinSW)</name>
|
||||||
|
@ -50,9 +53,6 @@ All options in other sections are optional
|
||||||
<description>This service is a service created from a sample configuration</description>
|
<description>This service is a service created from a sample configuration</description>
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<!-- Path to the executable, which should be started -->
|
|
||||||
<executable>%BASE%\myExecutable.exe</executable>
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
SECTION: Installation
|
SECTION: Installation
|
||||||
These options are being used during the installation only.
|
These options are being used during the installation only.
|
||||||
|
|
Loading…
Reference in New Issue