aboutsummaryrefslogtreecommitdiffstats
path: root/examples/static_world/src/static_world.app.src
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2013-01-30 22:13:31 +0100
committerLoïc Hoguin <[email protected]>2013-01-30 22:13:31 +0100
commitf96e20aef7cce6d47535ab63c36452f6c9e1c444 (patch)
treeb6ae3cd187ebe6d6c2eb48819f4cd4be0253757f /examples/static_world/src/static_world.app.src
parenteaaa81cce693e6dbbe2a48a594cd4bcd424c0495 (diff)
downloadcowboy-f96e20aef7cce6d47535ab63c36452f6c9e1c444.tar.gz
cowboy-f96e20aef7cce6d47535ab63c36452f6c9e1c444.tar.bz2
cowboy-f96e20aef7cce6d47535ab63c36452f6c9e1c444.zip
Rename example 'static' to 'static_world' to avoid confusion
Diffstat (limited to 'examples/static_world/src/static_world.app.src')
-rw-r--r--examples/static_world/src/static_world.app.src15
1 files changed, 15 insertions, 0 deletions
diff --git a/examples/static_world/src/static_world.app.src b/examples/static_world/src/static_world.app.src
new file mode 100644
index 0000000..b65995d
--- /dev/null
+++ b/examples/static_world/src/static_world.app.src
@@ -0,0 +1,15 @@
+%% Feel free to use, reuse and abuse the code in this file.
+
+{application, static_world, [
+ {description, "Cowboy static file handler example."},
+ {vsn, "1"},
+ {modules, []},
+ {registered, []},
+ {applications, [
+ kernel,
+ stdlib,
+ cowboy
+ ]},
+ {mod, {static_world_app, []}},
+ {env, []}
+]}.