Browse Source

Convert the compressed response example to a release

Loïc Hoguin 11 years ago
parent
commit
2f25c654b0

+ 14 - 0
examples/compress_response/Makefile

@@ -0,0 +1,14 @@
+PROJECT = compress_response
+
+DEPS = cowboy
+dep_cowboy = pkg://cowboy master
+
+.PHONY: release clean-release
+
+release: clean-release all
+	relx
+
+clean-release:
+	rm -rf _rel
+
+include ../../erlang.mk

+ 21 - 12
examples/compress_response/README.md

@@ -1,22 +1,27 @@
-Cowboy Compress Response
-========================
+Compressed response example
+===========================
 
-To compile this example you need rebar in your PATH.
+To try this example, you need GNU `make`, `git` and
+[relx](https://github.com/erlware/relx) in your PATH.
 
-Type the following command:
-```
-$ rebar get-deps compile
-```
+To build the example, run the following command:
 
-You can then start the Erlang node with the following command:
+``` bash
+$ make
 ```
-./start.sh
+
+To start the release in the foreground:
+
+``` bash
+$ ./_rel/bin/compress_response_example console
 ```
 
-Then point your browser to the indicated URL.
+Then point your browser at [http://localhost:8080](http://localhost:8080).
+
+Example output
+--------------
 
-Example
--------
+Without compression:
 
 ``` bash
 $ curl -i http://localhost:8080
@@ -38,7 +43,11 @@ have established the ability to work at virtually identical tasks and obtained
 considerable respect for their achievements. There are also cattle handlers
 in many other parts of the world, particularly South America and Australia,
 who perform work similar to the cowboy in their respective nations.
+```
 
+With compression:
+
+```
 $ curl -i --compressed http://localhost:8080
 HTTP/1.1 200 OK
 connection: keep-alive

+ 0 - 4
examples/compress_response/rebar.config

@@ -1,4 +0,0 @@
-{deps, [
-	{cowboy, ".*",
-		{git, "git://github.com/extend/cowboy.git", "master"}}
-]}.

+ 2 - 0
examples/compress_response/relx.config

@@ -0,0 +1,2 @@
+{release, {compress_response_example, "1"}, [compress_response]}.
+{extended_start_script, true}.

+ 0 - 15
examples/compress_response/src/compress_response.erl

@@ -1,15 +0,0 @@
-%% Feel free to use, reuse and abuse the code in this file.
-
--module(compress_response).
-
-%% API.
--export([start/0]).
-
-%% API.
-
-start() ->
-	ok = application:start(crypto),
-	ok = application:start(cowlib),
-	ok = application:start(ranch),
-	ok = application:start(cowboy),
-	ok = application:start(compress_response).

+ 0 - 3
examples/compress_response/start.sh

@@ -1,3 +0,0 @@
-#!/bin/sh
-erl -pa ebin deps/*/ebin -s compress_response \
-	-eval "io:format(\"Point your browser at http://localhost:8080~n\")."