Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ChicagoBoss/cb_admin
Admin interface for Chicago Boss
https://github.com/ChicagoBoss/cb_admin
Last synced: 2 months ago
JSON representation
Admin interface for Chicago Boss
- Host: GitHub
- URL: https://github.com/ChicagoBoss/cb_admin
- Owner: ChicagoBoss
- License: mit
- Created: 2011-07-08T21:56:55.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2016-06-10T15:19:22.000Z (over 8 years ago)
- Last Synced: 2024-04-22T13:34:10.083Z (9 months ago)
- Language: CSS
- Homepage:
- Size: 598 KB
- Stars: 67
- Watchers: 13
- Forks: 33
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-erlang - cb_admin - An admin interface for Chicago Boss. (Web Framework Components)
README
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 ./deps/boss (framework) and ../cb_admin (the checkout dir).
Then in *nix:
./rebar get-deps compile
./init.sh startIn Windows:
rebar get-deps compile
start-server.batThen visit http://localhost:8001/admin
Installation with an existing CB server
---------------------------------------Add to rebar.config
```erlang
{deps, [
% ...
{cb_admin, ".*", {git, "git://github.com/ChicagoBoss/cb_admin.git", "HEAD"}}
]}.
```And add something like this to your boss.config:
[{boss, [
{applications, [cb_admin, ...]},
...
]},
{cb_admin, [
{path, "./deps/cb_admin"},
{allow_ip_blocks, ["127.0.0.1"]},
{base_url, "/admin"}
]}].Run to fetch and compile cb_admin
```console
./rebar get-deps compile
./init-dev.sh
```