Advertisement
zhouhuakang

hello_erlang.app.src

Feb 3rd, 2015
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Erlang 0.64 KB | None | 0 0
  1. {application, hello_erlang, [
  2.   {description, ""},
  3.   {vsn, "0.1.0"},
  4.   {id, "git"},
  5.   {modules, []},
  6.   {registered, []},
  7.   {applications, [
  8.     kernel,
  9.     stdlib,
  10.     cowboy,
  11.     mongodb,
  12.     jiffy
  13.   ]},
  14.   {mod, {hello_erlang_app, []}},
  15.   {env,
  16.     [
  17.       {
  18.         mongodb_pools,
  19.         [
  20.           {
  21.            mg_pool1,
  22.            [
  23.              {size, 10},
  24.              {max_overflow, 20}
  25.            ],
  26.            [
  27.              {hostname, "127.0.0.1"},
  28.              {database, "user"},
  29.              {username, "zhk"},
  30.              {password, "zhk"}
  31.            ]
  32.           }
  33.         ]
  34.       }
  35.     ]
  36.   }
  37. ]}.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement