Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
iSeiryu committed Mar 29, 2012
0 parents commit 8522496
Show file tree
Hide file tree
Showing 69 changed files with 13,658 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README.md
@@ -0,0 +1,3 @@
#ChicagoBoss test website

This is a test project for learning Erlang with ChicagoBoss framework.
26 changes: 26 additions & 0 deletions boss.config
@@ -0,0 +1,26 @@
[{boss, [
{path, "/home/yourname/ChicagoBoss"},
{vm_cookie, "abc123"},
{applications, [cb_admin, addressbook]},
{db_host, "localhost"},
{db_port, 27017},
{db_adapter, mongodb},
{db_database, addressbook},
{db_write_mode, safe},
{db_read_mode, master},
{log_dir, "log"},
{server, misultin},
{port, 8001},
{session_adapter, mock},
{session_key, "_boss_session"},
{session_exp_time, 525600}
]},
{ addressbook, [
{path, "../addressbook"},
{base_url, "/"}
]},
{cb_admin, [
{path, "../cb_admin"},
{allow_ip_blocks, ["127.0.0.1"]},
{base_url, "/admin"}
]}].
Binary file added ebin/address.beam
Binary file not shown.
39 changes: 39 additions & 0 deletions ebin/addressbook.app
@@ -0,0 +1,39 @@
{application,addressbook,
[{description,"My Awesome Web Framework"},
{vsn,"0.0.1"},
{modules,
[user_lib,addressbook_outgoing_mail_controller,
addressbook_incoming_mail_controller,addressbook_main_controller,
addressbook_user_controller,addressbook_chat_controller,message,
address,userlist,person,addressbook_view_lib_tags,
addressbook_custom_filters,addressbook_custom_tags,
addressbook_view_layout_application_html,
addressbook_view_user_login_html,addressbook_view_user_showall_html,
addressbook_view_user_register_html,addressbook_view_chat_live_html,
addressbook_view_main_show_html,addressbook_view_main_create_html,
addressbook_view_main_edit_html,addressbook_view_main_index_html]},
{registered,[]},
{applications,[kernel,stdlib,crypto,boss]},
{env,
[{test_modules,[]},
{lib_modules,[user_lib]},
{mail_modules,
[addressbook_outgoing_mail_controller,
addressbook_incoming_mail_controller]},
{controller_modules,
[addressbook_main_controller,addressbook_user_controller,
addressbook_chat_controller]},
{model_modules,[message,address,userlist,person]},
{view_lib_tags_modules,[addressbook_view_lib_tags]},
{view_lib_helper_modules,
[addressbook_custom_filters,addressbook_custom_tags]},
{view_modules,
[addressbook_view_layout_application_html,
addressbook_view_user_login_html,
addressbook_view_user_showall_html,
addressbook_view_user_register_html,
addressbook_view_chat_live_html,
addressbook_view_main_show_html,
addressbook_view_main_create_html,
addressbook_view_main_edit_html,
addressbook_view_main_index_html]}]}]}.
Binary file added ebin/addressbook_chat_controller.beam
Binary file not shown.
Binary file added ebin/addressbook_custom_filters.beam
Binary file not shown.
Binary file added ebin/addressbook_custom_tags.beam
Binary file not shown.
Binary file added ebin/addressbook_incoming_mail_controller.beam
Binary file not shown.
Binary file added ebin/addressbook_main_controller.beam
Binary file not shown.
Binary file added ebin/addressbook_outgoing_mail_controller.beam
Binary file not shown.
Binary file added ebin/addressbook_user_controller.beam
Binary file not shown.
Binary file added ebin/addressbook_view_chat_live_html.beam
Binary file not shown.
Binary file not shown.
Binary file added ebin/addressbook_view_lib_tags.beam
Binary file not shown.
Binary file added ebin/addressbook_view_main_create_html.beam
Binary file not shown.
Binary file added ebin/addressbook_view_main_edit_html.beam
Binary file not shown.
Binary file added ebin/addressbook_view_main_index_html.beam
Binary file not shown.
Binary file added ebin/addressbook_view_main_show_html.beam
Binary file not shown.
Binary file added ebin/addressbook_view_user_login_html.beam
Binary file not shown.
Binary file added ebin/addressbook_view_user_register_html.beam
Binary file not shown.
Binary file added ebin/addressbook_view_user_showall_html.beam
Binary file not shown.
Binary file added ebin/message.beam
Binary file not shown.
Binary file added ebin/person.beam
Binary file not shown.
Binary file added ebin/user_lib.beam
Binary file not shown.
Binary file added ebin/userlist.beam
Binary file not shown.

0 comments on commit 8522496

Please sign in to comment.