Fix server docs.

This commit is contained in:
Steve Pulec 2014-08-13 22:16:53 -04:00
parent 64ed605c14
commit ba012d9902

View File

@ -171,14 +171,14 @@ To run a service:
```console ```console
$ moto_server ec2 $ moto_server ec2
* Running on http://127.0.0.1:5000/ * Running on http://0.0.0.0:5000/
``` ```
You can also pass the port as the second argument: You can also pass the port as the second argument:
```console ```console
$ moto_server ec2 3000 $ moto_server ec2 -p3000
* Running on http://127.0.0.1:3000/ * Running on http://0.0.0.0:3000/
``` ```