diff options
Diffstat (limited to 'examples/static/src/static.app.src')
-rw-r--r-- | examples/static/src/static.app.src | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/examples/static/src/static.app.src b/examples/static/src/static.app.src new file mode 100644 index 0000000..bf7512d --- /dev/null +++ b/examples/static/src/static.app.src @@ -0,0 +1,15 @@ +%% Feel free to use, reuse and abuse the code in this file. + +{application, static, [ + {description, "Cowboy static file server example."}, + {vsn, "1"}, + {modules, []}, + {registered, []}, + {applications, [ + kernel, + stdlib, + cowboy + ]}, + {mod, {static_app, []}}, + {env, []} +]}. |