Skip to content

mihawk/cb_admin

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

57 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cb_admin

This is the admin interface for Chicago Boss, which can be configured as a standalone application with CB 0.6 or later.

Installation as a standalone server

Check your boss.config and make sure that the path's are correct, defaults to ../ChicagoBoss (framework) and ../cb_admin (the checkout dir).

Then in *nix:

./rebar compile
./init.sh start

In Windows:

rebar compile
start-server.bat

Then visit http://localhost:8001/admin

Installation with an existing CB server

First "./rebar compile" in *nix or "rebar compile" in Windows, and add the app config section to the boss.config of your existing CB server.

Add something like this to your boss.config:

[{boss, [
    {applications, [cb_admin, ...]},
    ...
]},
{cb_admin, [
    {path, "../cb_admin"},
    {allow_ip_blocks, ["127.0.0.1"]},
    {base_url, "/admin"}
]}].

About

Admin interface for Chicago Boss

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CSS 46.6%
  • Erlang 45.1%
  • JavaScript 5.9%
  • Shell 2.4%