README.md in minke-1.14.5 vs README.md in minke-1.15.0
- old
+ new
@@ -22,26 +22,26 @@
```bash
$ mkdir ~/myservice
$ cd ~/myservice
```
-2. Run the generator command in a docker container. (note the space before -g)
+2. Run the generator command in a docker container.
```bash
-$ curl -L -s get.minke.rocks | bash -s ' -g minke-generator-go -o $(pwd) -n github.com/nicholasjackson -a myservice'
+$ curl -Ls https://get.minke.rocks | bash -s 'generate -g minke-generator-go -o $(pwd) -n github.com/nicholasjackson -a myservice'
```
3. Build a Docker image
```bash
-$ cd _build
-$ ./minke.sh rake app:build_image
+$ cd _minke
+$ ./minke -v build_image
```
4. Execute the functional tests
```bash
-$ ./minke.sh rake app:cucumber
+$ ./minke -v cucumber
```
You now have a working microservice ready to be pushed to a Docker registry and deployed to a server. For more detailed information please see the [tutorial](tutorial.html).
## Development