Skip to content

Jono's notes to run manually

Jono edited this page Apr 13, 2017 · 4 revisions

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

Clone this wiki locally