-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding cb_admin to current ChicagoBoss installation #47
Comments
I have the same issue also. I follow the tutorial here : https://github.com/ChicagoBoss/ChicagoBoss/wiki/an-evening-with-chicago-boss and when adding cb_admin part, it not compile and give error : FATAL: Config file "boss.config" has a syntax error on line 13, on line 13 in boss.config : [{boss, [ and add below : { cb_admin, [ My version : Erlang/OTP 17 [erts-6.4.1] [source] [64-bit] [smp:4:4] [async-threads:10] [kernel-poll:false] anyone care to give direction? Thanks |
Top part
while on the bottom part...
|
Gonna try it, thanks |
I just installed ChicagoBoss following the github instructions.
Then, I created a project:
make
make app PROJECT=myproject
cd ../myproject
Everything's cool so far, now, I want to add the admin interface such as cb_admin, so I add to myproject rebar.conf this line {cb_admin, ".*", {git, "git://github.com/ChicagoBoss/cb_admin.git", "HEAD"}} so it will become:
{deps, [
{boss, ".", {git, "https://github.com/ChicagoBoss/ChicagoBoss.git", {tag, "v0.9.beta-1"}}}
{cb_admin, ".", {git, "git://github.com/ChicagoBoss/cb_admin.git", "HEAD"}}
]}.
{plugin_dir, ["priv/rebar"]}.
{plugins, [boss_plugin]}.
{eunit_compile_opts, [{src_dirs, ["src/test"]}]}.
{lib_dirs, ["../ChicagoBoss/deps/elixir/lib"]}.
So I run ./rebar get-deps compile, but it keeps throwing me this error:
ERROR: Failed to load /home/kristian/erlang-projects/myproject /rebar.config: {error,
{3,
erl_parse,
["syntax error before: ",
"'{'"]}}
Please, anybody has an idea about this?
My erlang version is 19
Thanks in advance
The text was updated successfully, but these errors were encountered: