aboutsummaryrefslogtreecommitdiffstats
path: root/examples/markdown_middleware
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2016-01-14 20:56:31 +0100
committerLoïc Hoguin <[email protected]>2016-01-14 20:56:31 +0100
commitcf444960050b6199765c07ad12357afb2d485045 (patch)
treeb5e5badad8e29eb37fb34a125488d8f250dc353d /examples/markdown_middleware
parent5dd9d877b1fe0a32cc32f1760a8520e7cd1c2ff6 (diff)
downloadcowboy-cf444960050b6199765c07ad12357afb2d485045.tar.gz
cowboy-cf444960050b6199765c07ad12357afb2d485045.tar.bz2
cowboy-cf444960050b6199765c07ad12357afb2d485045.zip
Remove the .app.src file in all examples
Diffstat (limited to 'examples/markdown_middleware')
-rw-r--r--examples/markdown_middleware/Makefile4
-rw-r--r--examples/markdown_middleware/src/markdown_middleware.app.src15
2 files changed, 4 insertions, 15 deletions
diff --git a/examples/markdown_middleware/Makefile b/examples/markdown_middleware/Makefile
index ab2fbd6..2087cf3 100644
--- a/examples/markdown_middleware/Makefile
+++ b/examples/markdown_middleware/Makefile
@@ -1,4 +1,8 @@
PROJECT = markdown_middleware
+PROJECT_DESCRIPTION = Cowboy static file handler example with middleware component
+PROJECT_VERSION = 1
+
DEPS = cowboy
dep_cowboy = git https://github.com/ninenines/cowboy master
+
include ../../erlang.mk
diff --git a/examples/markdown_middleware/src/markdown_middleware.app.src b/examples/markdown_middleware/src/markdown_middleware.app.src
deleted file mode 100644
index 56f26af..0000000
--- a/examples/markdown_middleware/src/markdown_middleware.app.src
+++ /dev/null
@@ -1,15 +0,0 @@
-%% Feel free to use, reuse and abuse the code in this file.
-
-{application, markdown_middleware, [
- {description, "Cowboy static file handler example with middleware component."},
- {vsn, "1"},
- {modules, []},
- {registered, [markdown_middleware_sup]},
- {applications, [
- kernel,
- stdlib,
- cowboy
- ]},
- {mod, {markdown_middleware_app, []}},
- {env, []}
-]}.