From 340f0a51123b476bca765b87d3f36411e896b5e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Sat, 7 Sep 2013 21:58:03 +0200 Subject: Convert the cookie example to a release --- examples/cookie/Makefile | 15 +++++++++++++++ examples/cookie/README.md | 27 +++++++++++++++------------ examples/cookie/rebar.config | 6 ------ examples/cookie/relx.config | 2 ++ examples/cookie/src/cookie.app.src | 3 ++- examples/cookie/src/cookie.erl | 15 --------------- examples/cookie/start.sh | 3 --- 7 files changed, 34 insertions(+), 37 deletions(-) create mode 100644 examples/cookie/Makefile delete mode 100644 examples/cookie/rebar.config create mode 100644 examples/cookie/relx.config delete mode 100644 examples/cookie/src/cookie.erl delete mode 100755 examples/cookie/start.sh diff --git a/examples/cookie/Makefile b/examples/cookie/Makefile new file mode 100644 index 0000000..fe61f29 --- /dev/null +++ b/examples/cookie/Makefile @@ -0,0 +1,15 @@ +PROJECT = cookie + +DEPS = cowboy erlydtl +dep_cowboy = pkg://cowboy master +dep_erlydtl = pkg://erlydtl master + +.PHONY: release clean-release + +release: clean-release all + relx + +clean-release: + rm -rf _rel + +include ../../erlang.mk diff --git a/examples/cookie/README.md b/examples/cookie/README.md index cb6465f..8e1632a 100644 --- a/examples/cookie/README.md +++ b/examples/cookie/README.md @@ -1,18 +1,21 @@ -Cowboy Cookie -============= +Cookie 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/cookie_example console ``` -Then point your browser to the indicated URL. This example allows -you to use any path you want to try to show that cookies are defined -site-wide. Try it in your browser! +Then point your browser at [http://localhost:8080](http://localhost:8080). +This example allows you to use any path to show that the cookies +are defined site-wide. Try it! diff --git a/examples/cookie/rebar.config b/examples/cookie/rebar.config deleted file mode 100644 index d1fecef..0000000 --- a/examples/cookie/rebar.config +++ /dev/null @@ -1,6 +0,0 @@ -{deps, [ - {cowboy, ".*", - {git, "git://github.com/extend/cowboy.git", "master"}}, - {erlydtl, ".*", - {git, "https://github.com/evanmiller/erlydtl.git", "master"}} -]}. diff --git a/examples/cookie/relx.config b/examples/cookie/relx.config new file mode 100644 index 0000000..26dc875 --- /dev/null +++ b/examples/cookie/relx.config @@ -0,0 +1,2 @@ +{release, {cookie_example, "1"}, [cookie]}. +{extended_start_script, true}. diff --git a/examples/cookie/src/cookie.app.src b/examples/cookie/src/cookie.app.src index 1e9cd3d..b7098f0 100644 --- a/examples/cookie/src/cookie.app.src +++ b/examples/cookie/src/cookie.app.src @@ -8,7 +8,8 @@ {applications, [ kernel, stdlib, - cowboy + cowboy, + erlydtl ]}, {mod, {cookie_app, []}}, {env, []} diff --git a/examples/cookie/src/cookie.erl b/examples/cookie/src/cookie.erl deleted file mode 100644 index 2626b39..0000000 --- a/examples/cookie/src/cookie.erl +++ /dev/null @@ -1,15 +0,0 @@ -%% Feel free to use, reuse and abuse the code in this file. - --module(cookie). - -%% 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(cookie). diff --git a/examples/cookie/start.sh b/examples/cookie/start.sh deleted file mode 100755 index 7b1d728..0000000 --- a/examples/cookie/start.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh -erl -pa ebin deps/*/ebin -s cookie \ - -eval "io:format(\"Point your browser at http://localhost:8080~n\")." -- cgit v1.2.3