README.md in soaring-0.1.10 vs README.md in soaring-0.1.11
- old
+ new
@@ -34,21 +34,26 @@
## Running a service component locally
Start up a local instance of the service component to check that all is well
```bash
- soaring run
+ soaring start
```
This will default to a MRI ruby rack application running with the following defaults:
```bash
port = 9393
environment = 'development'
```
+To stop you can simply send a CTRL-C or programmatically kill it using the stop command from another terminal
+```bash
+ soaring stop
+```
+
These defaults can be overriden using parameters passed to soaring. View the command line options:
```bash
- soaring -h
+ soaring help
```
## Packaging the service component for deployment
Make sure your git repo is committed and pushed to master. Execute the following command.