We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
This is roughly what I do to run this project locally
rvm use 2.1.1
gem install bundler bundle install
in mysql create alm_report database
GRANT ALL PRIVILEGES ON alm_report.* TO 'lagotto'@'%' WITH GRANT OPTION;
grant all privileges on alm_report . * to 'lagotto'@'localhost';
FLUSH PRIVILEGES;
cp .env.example .env
edit .env to point to the DB you created
DOTENV=default rake db:create:all (or not, this sometimes works)
DOTENV=default rake db:setup
DOTENV=default rake db:test:prepare
bower install
DOTENV=default rails server