Tag: Stringer
sudo -u postgres createuser -D -A -P stringer
sudo -u postgres createdb -O stringer stringer_live
git clone https://github.com/swanson/stringer.git cd stringer bundle install rbenv rehash
echo 'export STRINGER_DATABASE="stringer_live"' >> $HOME/.bash_profile echo 'export STRINGER_DATABASE_USERNAME="stringer"' >> $HOME/.bash_profile echo 'export STRINGER_DATABASE_PASSWORD="EDIT_ME"' >> $HOME/.bash_profile echo 'export RACK_ENV="production"' >> $HOME/.bash_profile source ~/.bash_profile
cd $HOME/stringer rake db:migrate RACK_ENV=production
bundle exec foreman start
bundle exec rake fetch_feeds