aboutsummaryrefslogtreecommitdiffstats
path: root/examples/cookie
diff options
context:
space:
mode:
Diffstat (limited to 'examples/cookie')
-rw-r--r--examples/cookie/Makefile4
-rw-r--r--examples/cookie/src/cookie.app.src16
2 files changed, 4 insertions, 16 deletions
diff --git a/examples/cookie/Makefile b/examples/cookie/Makefile
index 4fc8fb9..f4e593b 100644
--- a/examples/cookie/Makefile
+++ b/examples/cookie/Makefile
@@ -1,4 +1,8 @@
PROJECT = cookie
+PROJECT_DESCRIPTION = Cowboy Cookie example
+PROJECT_VERSION = 1
+
DEPS = cowboy erlydtl
dep_cowboy = git https://github.com/ninenines/cowboy master
+
include ../../erlang.mk
diff --git a/examples/cookie/src/cookie.app.src b/examples/cookie/src/cookie.app.src
deleted file mode 100644
index 192d907..0000000
--- a/examples/cookie/src/cookie.app.src
+++ /dev/null
@@ -1,16 +0,0 @@
-%% Feel free to use, reuse and abuse the code in this file.
-
-{application, cookie, [
- {description, "Cowboy Cookie example."},
- {vsn, "1"},
- {modules, []},
- {registered, [cookie_sup]},
- {applications, [
- kernel,
- stdlib,
- cowboy,
- erlydtl
- ]},
- {mod, {cookie_app, []}},
- {env, []}
-]}.