Created a 'Social Network' spoof for playing with ChicagoBoss and Erlang
``` http://www.erlang.org/download.html ``` Choose a development directory to download the applications. From that directory run: ``` git clone https://github.com/evanmiller/ChicagoBoss.git cd ChicagoBoss make ``` Download and compile the admin application into the development directory: ``` cd .. git clone https://github.com/evanmiller/cb_admin.git cd cb_admin ./rebar compile ``` Download the bff application into the development directory ``` cd .. git clone git@github.com:nickmcdowall/bff.git ``` ``` cd bff ./init-dev.sh start ``` You should now be able to hit the home page: http://localhost:8001/ and the admin page: http://localhost:8001/adminTo quickly setup a dummy user run this in the console:
dummy_data:load("bob").
This will create a user called bob with password bob.
To run the functional tests make sure the app is running; Open another terminal; run the following command from within the bff root directory: ```./rebar boss c=test_functional```