diff options
author | Loïc Hoguin <[email protected]> | 2016-08-30 13:13:58 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2016-08-30 13:13:58 +0200 |
commit | a39620a78352079d98eeeb7ba8deeaf9c3b6b371 (patch) | |
tree | ae4f8195a110dc32cb54343df6c73ff01612aece /docs/en/cowboy/2.0/guide/getting_started/index.html | |
parent | c807880f7ac73f813b2660ea81a00f7712a4e793 (diff) | |
download | ninenines.eu-a39620a78352079d98eeeb7ba8deeaf9c3b6b371.tar.gz ninenines.eu-a39620a78352079d98eeeb7ba8deeaf9c3b6b371.tar.bz2 ninenines.eu-a39620a78352079d98eeeb7ba8deeaf9c3b6b371.zip |
Update documentation
Diffstat (limited to 'docs/en/cowboy/2.0/guide/getting_started/index.html')
-rw-r--r-- | docs/en/cowboy/2.0/guide/getting_started/index.html | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/docs/en/cowboy/2.0/guide/getting_started/index.html b/docs/en/cowboy/2.0/guide/getting_started/index.html index 85cd039d..34957699 100644 --- a/docs/en/cowboy/2.0/guide/getting_started/index.html +++ b/docs/en/cowboy/2.0/guide/getting_started/index.html @@ -7,7 +7,7 @@ <meta name="description" content=""> <meta name="author" content="Loïc Hoguin based on a design from (Soft10) Pol Cámara"> - <meta name="generator" content="Hugo 0.15" /> + <meta name="generator" content="Hugo 0.16" /> <title>Nine Nines: Getting started</title> @@ -140,7 +140,16 @@ handler.</p></div> <div class="paragraph"><p>We will modify the <em>Makefile</em> to tell the build system it needs to
fetch and compile Cowboy:</p></div>
<div class="listingblock">
-<div class="content"></div></div>
+<div class="content"><!-- Generator: GNU source-highlight 3.1.8
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #009900">PROJECT =</span> hello_erlang
+
+<span style="color: #009900">DEPS =</span> cowboy
+<span style="color: #009900">dep_cowboy_commit =</span> master
+
+include erlang.mk</tt></pre></div></div>
<div class="paragraph"><p>If you run <code>make run</code> now, Cowboy will be included in the release
and started automatically. This is not enough however, as Cowboy
doesn’t do anything by default. We still need to tell Cowboy to
|