Just thought I'd share some issues I had just following the installation guide(s).
README.md and DEV-SETUP.md have conflicting instructions for local setup. These differences need to be resolved.
README.md tells you to view localhost:5000 for your local setup, but DEV-SETUP.md runs on localhost:3000
I tried to install on MacOS Yosemite and encountered these problems with missing dependencies. It would be preferable for the code to check for these dependencies and fail gracefully with an informative error.
Postgres needs to be installed (try brew install postgresql)
You have to generate a secret key (rake secret) and declare it in .env
You have to remove the line require jquery.ui.autocomplete from the file app/assets/javascripts/application.js because even though it looks commented out, it fails to load and halts the server.
Just thought I'd share some issues I had just following the installation guide(s).
README.md
andDEV-SETUP.md
have conflicting instructions for local setup. These differences need to be resolved.README.md
tells you to viewlocalhost:5000
for your local setup, butDEV-SETUP.md
runs onlocalhost:3000
brew install qt
)brew install postgresql
)rake secret
) and declare it in.env
require jquery.ui.autocomplete
from the fileapp/assets/javascripts/application.js
because even though it looks commented out, it fails to load and halts the server.