aboutsummaryrefslogblamecommitdiffstats
path: root/examples/ssl_hello_world/src/ssl_hello_world.app.src
blob: 30faecbccf83452d2847d1894d53d5c94bfa7971 (plain) (tree)
1
2
3
4
5
6
7
8
9
10





                                                              
                                            


                        

                       



                                         
%% Feel free to use, reuse and abuse the code in this file.

{application, ssl_hello_world, [
	{description, "Cowboy Hello World example with SSL."},
	{vsn, "1"},
	{modules, []},
	{registered, [ssl_hello_world_sup]},
	{applications, [
		kernel,
		stdlib,
		cowboy,
		ssl
	]},
	{mod, {ssl_hello_world_app, []}},
	{env, []}
]}.