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