bundle
From the Bootswatch docs:
git clone https://github.com/thomaspark/bootswatch.git
cd bootswatch
npm install
Edit bower_components/bootstrap/less/bootstrap.less
by commenting out:
code
forms
- all components except:
navs
alerts
tooltips
popovers
Run:
grunt swatch:lumen
Copy lumen/bootstrap.min.css
to app/assets/stylesheets
and change ../fonts
to fonts
.
heroku apps:create
heroku addons:add pgbackups:auto-month
heroku addons:add rediscloud
heroku addons:add sendgrid
heroku config:set SECRET_KEY_BASE=`bundle exec rake secret`
heroku config:set ACTION_MAILER_HOST=www.readyreckoner.ca
heroku config:set [email protected]
heroku config:set REDIS_URL=`heroku config:get REDISCLOUD_URL`
In config/environments/production.rb
:
config.action_mailer.smtp_settings = {
address: 'smtp.sendgrid.net',
port: '587',
authentication: :plain,
user_name: ENV['SENDGRID_USERNAME'],
password: ENV['SENDGRID_PASSWORD'],
domain: 'heroku.com',
enable_starttls_auto: true
}
This repository is on GitHub: https://github.com/opennorth/readyreckoner.ca, where your contributions, forks, bug reports, feature requests, and feedback are greatly welcomed.
Copyright (c) 2014 Open North Inc., released under the MIT license