aboutsummaryrefslogtreecommitdiffstats
path: root/examples/upload/src/upload.app.src
diff options
context:
space:
mode:
Diffstat (limited to 'examples/upload/src/upload.app.src')
-rw-r--r--examples/upload/src/upload.app.src15
1 files changed, 15 insertions, 0 deletions
diff --git a/examples/upload/src/upload.app.src b/examples/upload/src/upload.app.src
new file mode 100644
index 0000000..2325935
--- /dev/null
+++ b/examples/upload/src/upload.app.src
@@ -0,0 +1,15 @@
+%% Feel free to use, reuse and abuse the code in this file.
+
+{application, upload, [
+ {description, "Cowboy multipart upload example."},
+ {vsn, "1"},
+ {modules, []},
+ {registered, [upload_sup]},
+ {applications, [
+ kernel,
+ stdlib,
+ cowboy
+ ]},
+ {mod, {upload_app, []}},
+ {env, []}
+]}.