Skip to content

Commit c788766

Browse files
committed
Merge branch 'sagarnasit-generate-readme' into develop
2 parents 179feae + 844cade commit c788766

File tree

2 files changed

+26
-7
lines changed

2 files changed

+26
-7
lines changed

README.md

Lines changed: 24 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,34 +26,44 @@ ee service
2626

2727

2828

29-
### ee service start
29+
### ee service enable
3030

3131
Starts global services.
3232

3333
~~~
34-
ee service start <service-name>
34+
ee service enable <service-name>
3535
~~~
3636

3737
**OPTIONS**
3838

3939
<service-name>
4040
Name of service.
4141

42+
**EXAMPLES**
43+
44+
# Enable global service
45+
$ ee service enable nginx-proxy
4246

4347

44-
### ee service stop
48+
49+
### ee service disable
4550

4651
Stops global services.
4752

4853
~~~
49-
ee service stop <service-name>
54+
ee service disable <service-name>
5055
~~~
5156

5257
**OPTIONS**
5358

5459
<service-name>
5560
Name of service.
5661

62+
**EXAMPLES**
63+
64+
# Disable global service
65+
$ ee service disable nginx-proxy
66+
5767

5868

5969
### ee service restart
@@ -69,6 +79,11 @@ ee service restart <service-name>
6979
<service-name>
7080
Name of service.
7181

82+
**EXAMPLES**
83+
84+
# Restart global service
85+
$ ee service restart nginx-proxy
86+
7287

7388

7489
### ee service reload
@@ -84,13 +99,17 @@ ee service reload <service-name>
8499
<service-name>
85100
Name of service.
86101

102+
**EXAMPLES**
103+
104+
# Reload global service
105+
$ ee service reload nginx-proxy
106+
87107
## Contributing
88108

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

91111
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.
92112

93-
94113
### Reporting a bug
95114

96115
Think you’ve found a bug? We’d love for you to help us get it fixed.

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
"bundled": true,
2424
"commands": [
2525
"service",
26-
"service start",
27-
"service stop",
26+
"service enable",
27+
"service disable",
2828
"service restart",
2929
"service reload"
3030
]

0 commit comments

Comments
 (0)