Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 24 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,34 +26,44 @@ ee service



### ee service start
### ee service enable

Starts global services.

~~~
ee service start <service-name>
ee service enable <service-name>
~~~

**OPTIONS**

<service-name>
Name of service.

**EXAMPLES**

# Enable global service
$ ee service enable nginx-proxy


### ee service stop

### ee service disable

Stops global services.

~~~
ee service stop <service-name>
ee service disable <service-name>
~~~

**OPTIONS**

<service-name>
Name of service.

**EXAMPLES**

# Disable global service
$ ee service disable nginx-proxy



### ee service restart
Expand All @@ -69,6 +79,11 @@ ee service restart <service-name>
<service-name>
Name of service.

**EXAMPLES**

# Restart global service
$ ee service restart nginx-proxy



### ee service reload
Expand All @@ -84,13 +99,17 @@ ee service reload <service-name>
<service-name>
Name of service.

**EXAMPLES**

# Reload global service
$ ee service reload nginx-proxy

## Contributing

We appreciate you taking the initiative to contribute to this project.

Contributing isn’t limited to just code. We encourage you to contribute in the way that best fits your abilities, by writing tutorials, giving a demo at your local meetup, helping other users with their support questions, or revising our documentation.


### Reporting a bug

Think you’ve found a bug? We’d love for you to help us get it fixed.
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
"bundled": true,
"commands": [
"service",
"service start",
"service stop",
"service enable",
"service disable",
"service restart",
"service reload"
]
Expand Down