aboutsummaryrefslogtreecommitdiffstats
path: root/examples/hello_world/src/hello_world.app.src
blob: 7512a2f4af0f6b79e55bce452fb0e75822260d48 (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, hello_world, [
	{description, "Cowboy Hello World example."},
	{vsn, "1"},
	{modules, []},
	{registered, [hello_world_sup]},
	{applications, [
		kernel,
		stdlib,
		cowboy
	]},
	{mod, {hello_world_app, []}},
	{env, []}
]}.