aboutsummaryrefslogtreecommitdiffstats
path: root/examples/static_world/src/static_world.app.src
blob: b65995d59e1b7d65c6addc47617c31a6ab6ab145 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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, []}
]}.