aboutsummaryrefslogtreecommitdiffstats
path: root/examples/web_server/src/web_server.app.src
blob: f503422994db40c3f04a0e479667e37834a7a52b (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, web_server, [
	{description, "Cowboy static file handler with directory indexes."},
	{vsn, "1"},
	{modules, []},
	{registered, [web_server_sup]},
	{applications, [
		kernel,
		stdlib,
		cowboy
	]},
	{mod, {web_server_app, []}},
	{env, []}
]}.