Generate Bushfire Survival Plans that include notification functionality
mysql -u root -p
create user rhok;
grant all on rhok.* to 'rhok'@localhost identified by 'rhok';
git clone https://github.com/jkelabora/rhok-plan-generator.git
export DB_SOCKET=/tmp/mysql.sock
export RDS_DB_NAME=rhok
cd rhok-plan-generator/
bundle install
bundle exec rake db:create
bundle exec rake db:migrate
bundle exec rake db:seed
bundle exec rails s
For deploying to AWS there's a bit of stuff involved.. You need the CLI tools for Elastic Beanstalk and some dotfile stuff.. Maybe talk to someone that's worked on this already..
eb start