0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-14 20:30:23 +00:00

Rename the basic_auth example to rest_basic_auth

This commit is contained in:
Loïc Hoguin 2013-09-07 16:23:13 +02:00
parent 51ce122858
commit bb9a2e975e
6 changed files with 8 additions and 8 deletions

View file

@ -0,0 +1,25 @@
%% Feel free to use, reuse and abuse the code in this file.
%% @private
-module(rest_basic_auth_app).
-behaviour(application).
%% API.
-export([start/2]).
-export([stop/1]).
%% API.
start(_Type, _Args) ->
Dispatch = cowboy_router:compile([
{'_', [
{"/", toppage_handler, []}
]}
]),
{ok, _} = cowboy:start_http(http, 100, [{port, 8080}], [
{env, [{dispatch, Dispatch}]}
]),
rest_basic_auth_sup:start_link().
stop(_State) ->
ok.