From dacaf5d293aacd0e98c5aca39c4cf03ec52d12dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Sun, 8 Sep 2013 12:22:52 +0200 Subject: Add missing files to the REST basic auth example --- examples/rest_basic_auth/Makefile | 14 ++++++++++++++ examples/rest_basic_auth/relx.config | 2 ++ 2 files changed, 16 insertions(+) create mode 100644 examples/rest_basic_auth/Makefile create mode 100644 examples/rest_basic_auth/relx.config diff --git a/examples/rest_basic_auth/Makefile b/examples/rest_basic_auth/Makefile new file mode 100644 index 0000000..aa73c91 --- /dev/null +++ b/examples/rest_basic_auth/Makefile @@ -0,0 +1,14 @@ +PROJECT = rest_basic_auth + +DEPS = cowboy +dep_cowboy = pkg://cowboy master + +.PHONY: release clean-release + +release: clean-release all + relx + +clean-release: + rm -rf _rel + +include ../../erlang.mk diff --git a/examples/rest_basic_auth/relx.config b/examples/rest_basic_auth/relx.config new file mode 100644 index 0000000..1f75b28 --- /dev/null +++ b/examples/rest_basic_auth/relx.config @@ -0,0 +1,2 @@ +{release, {rest_basic_auth_example, "1"}, [rest_basic_auth]}. +{extended_start_script, true}. -- cgit v1.2.3