This is my boss.config, I just removed all the comments and inactive 
stuff...

% -*- mode: erlang -*-
[
 {cb_admin,
  [
   {path, "./deps/cb_admin"},
   {allow_ip_blocks,
    [
     "127.0.0.1"
    ]
   },
   {base_url, "/admin"}
  ]
 },

 {bcrypt, []},

 {boss,
  [
   {path, "./deps/boss"},
   {applications, [smsengine, cb_admin]},
   {assume_locale, "en"},

   {controller_filter_config, [{api_authorisation, [{method, 
auth_faked}]}]},

   {controller_filter_modules,
    [
     api_authorisation
    ]
   },

   {compiler_options, [debug_info, return_errors]},


   {db_host, "localhost"},
   {db_port, 1978},
   {db_adapter, mock},
   {port, 31415},
   {server, cowboy},

   {session_adapter, mock},
   {session_key, "_boss_session"},
   {session_exp_time, 525600},
   {session_cookie_http_only, false},
   {session_cookie_secure, false},

   {template_tag_modules, []},
   {template_filter_modules, []},
   {template_auto_escape, true},


   {dummy, true} % a final dummy option so we don't have to keep track of 
commas
  ]},


 { tinymq,
   [
   ]},


 {lager,
  [
   {handlers,
    [
     {lager_console_backend, info},
     {lager_file_backend,
      [
       {"log/error.log", error, 10485760, "$D0", 5},
       {"log/console.log", info, 10485760, "$D0", 5}
      ]}
    ]},
   {colored, true},
   {dummy, true}
  ]},

 %% APPLICATION CONFIGURATIONS
 { smsengine,
   [
    {path, "../smsengine"},
    {base_url, "/"},
    {dummy, true},
    {controller_modules,
     [
      smsengine_inbound_controller,
      smsengine_web_controller
     ]}
   ]}
].

>
>

-- 
You received this message because you are subscribed to the Google Groups 
"ChicagoBoss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
Visit this group at http://groups.google.com/group/chicagoboss.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/chicagoboss/9c08107b-9893-4b3f-ac80-05a4d594acc6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to