aboutsummaryrefslogtreecommitdiffstats
path: root/examples/static/src/static.app.src
blob: bf7512d40f89eb2223a6b26512b333a5ec10af15 (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, [
	{description, "Cowboy static file server example."},
	{vsn, "1"},
	{modules, []},
	{registered, []},
	{applications, [
		kernel,
		stdlib,
		cowboy
	]},
	{mod, {static_app, []}},
	{env, []}
]}.