Syntax error in database.yml

Hi, I followed the Kali install procedure from
Installing Dradis on Kali Linux | Dradis Framework
, and then the git procedure as instructed from
Installing Dradis from Git | Dradis Framework

There were multiple problems.
The github file config/database.yml broke the install script.

The broken file contains:
default: &default
adapter: sqlite3
- pool: 5
+ pool: <%= ENV.fetch(“RAILS_MAX_THREADS”) { 5 } %>
timeout: 5000

I changed it like this, and it fixed the install:
vim /usr/lib/dradis-ce/config/database.yml

default: &default
adapter: sqlite3
 pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
 timeout: 5000

Regards,
Damien

looks like this has been fixed in Updateed database.yml.template by R3dy · Pull Request #153 · dradis/dradis-ce · GitHub