Browse Source

Make the getting started properly use master

Loïc Hoguin 9 years ago
parent
commit
3d48e58111
1 changed files with 6 additions and 1 deletions
  1. 6 1
      doc/src/guide/getting_started.asciidoc

+ 6 - 1
doc/src/guide/getting_started.asciidoc

@@ -59,13 +59,18 @@ handler.
 === Cowboy setup
 === Cowboy setup
 
 
 Modifying the 'Makefile' allows the build system to know it needs to
 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:
 to our Makefile to make it look like this:
 
 
 [source,make]
 [source,make]
+----
 PROJECT = hello_erlang
 PROJECT = hello_erlang
+
 DEPS = cowboy
 DEPS = cowboy
+dep_cowboy_commit = master
+
 include erlang.mk
 include erlang.mk
+----
 
 
 If you run `make run` now, Cowboy will be included in the release
 If you run `make run` now, Cowboy will be included in the release
 and started automatically. This is not enough however, as Cowboy
 and started automatically. This is not enough however, as Cowboy