-
Notifications
You must be signed in to change notification settings - Fork 288
Directory Structure
After running this command in ChicagoBoss’s main directory
make app PROJECT=rabbit
followed by a
cd ../rabbit
you should see something like this:
CentralStation:rabbit kjanson$ lsl-r— 1 kjanson wheel 436 Sep 22 21:54 Makefile
total 48
-rw-r
rw-r-r— 1 kjanson wheel 315 Sep 22 21:54 boss.config
drwxr-xr-x 2 kjanson wheel 68 Sep 22 21:54 ebin
drwxr-xr-x 2 kjanson wheel 68 Sep 22 21:54 include
drwxr-xr-x 2 kjanson wheel 68 Sep 22 21:54 log
drwxr-xr-x 5 kjanson wheel 170 Sep 22 21:54 priv
rw-r-r— 1 kjanson wheel 230 Sep 22 21:54 rabbit.app.src
drwxr-xr-x 9 kjanson wheel 306 Sep 22 21:54 src
rwxr-xr-x 1 kjanson wheel 245 Sep 22 21:54 start-dev.sh-r— 1 kjanson wheel 68 Sep 22 21:54 start-server.bat
-rw-r
-rwxr-xr-x 1 kjanson wheel 634 Sep 22 21:54 start.sh
This is the new structure without cb_admin.
If you wish to run the admin interface from within this directory structure, you should perform these steps:
Git the latest cb_admin fresh from github
git clone https://github.com/evanmiller/chicagoboss_admin.git cb_adminOutput will be something like this:
Cloning into cb_admin…
remote: Counting objects: 188, done.
remote: Compressing objects: 100% (107/107), done.
remote: Total 188 (delta 84), reused 176 (delta 72)
Receiving objects: 100% (188/188), 139.10 KiB | 224 KiB/s, done.
Resolving deltas: 100% (84/84), done.
After that, compile the cb_admin files by changing into the new cb_admin directory like this:
cd cb_admin
make
cd ../
Don’t forget to enable the admin interface in boss.config!
All done!
Enjoy!