diff options
author | Loïc Hoguin <[email protected]> | 2016-01-15 11:19:59 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2016-01-15 11:19:59 +0100 |
commit | 3d48e581115772ddbcd906727b900b9ee6aa2c41 (patch) | |
tree | 59de01c7edc8c917f2c59e417c2e20a0d89d6f04 | |
parent | ec82e3548b2cd111b270d0355c5a42a9b1f492a4 (diff) | |
download | cowboy-3d48e581115772ddbcd906727b900b9ee6aa2c41.tar.gz cowboy-3d48e581115772ddbcd906727b900b9ee6aa2c41.tar.bz2 cowboy-3d48e581115772ddbcd906727b900b9ee6aa2c41.zip |
Make the getting started properly use master
-rw-r--r-- | doc/src/guide/getting_started.asciidoc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/doc/src/guide/getting_started.asciidoc b/doc/src/guide/getting_started.asciidoc index 5d72f0a..679d9fe 100644 --- a/doc/src/guide/getting_started.asciidoc +++ b/doc/src/guide/getting_started.asciidoc @@ -59,13 +59,18 @@ handler. === Cowboy setup Modifying the 'Makefile' allows the build system to know it needs to -fetch and compile Cowboy. To do that we simply need to add one line +fetch and compile Cowboy. To do that we simply need to add two lines to our Makefile to make it look like this: [source,make] +---- PROJECT = hello_erlang + DEPS = cowboy +dep_cowboy_commit = master + include erlang.mk +---- If you run `make run` now, Cowboy will be included in the release and started automatically. This is not enough however, as Cowboy |