diff options
Diffstat (limited to 'examples/static_world')
-rw-r--r-- | examples/static_world/Makefile | 4 | ||||
-rw-r--r-- | examples/static_world/src/static_world.app.src | 15 |
2 files changed, 4 insertions, 15 deletions
diff --git a/examples/static_world/Makefile b/examples/static_world/Makefile index 7524b77..47c1094 100644 --- a/examples/static_world/Makefile +++ b/examples/static_world/Makefile @@ -1,4 +1,8 @@ PROJECT = static_world +PROJECT_DESCRIPTION = Cowboy static file handler example +PROJECT_VERSION = 1 + DEPS = cowboy dep_cowboy = git https://github.com/ninenines/cowboy master + include ../../erlang.mk diff --git a/examples/static_world/src/static_world.app.src b/examples/static_world/src/static_world.app.src deleted file mode 100644 index 879801d..0000000 --- a/examples/static_world/src/static_world.app.src +++ /dev/null @@ -1,15 +0,0 @@ -%% 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, [static_world_sup]}, - {applications, [ - kernel, - stdlib, - cowboy - ]}, - {mod, {static_world_app, []}}, - {env, []} -]}. |