Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tigershen23/2bc477d99bda6e47ee06df4506730621 to your computer and use it in GitHub Desktop.
Save tigershen23/2bc477d99bda6e47ee06df4506730621 to your computer and use it in GitHub Desktop.
Rails Website Launch Checklist

Ruby on Rails Website Launch Checklist

Copy this gist and customise it to your liking.

  • Run Brakeman and resolve any issues where required
  • Run rails best practices and resolve any warnings
  • Run full test suite and make sure all tests are passing
  • Make sure no dummy email addresses are left in any notification emails (eg contact form)
  • Make sure production assets compile correct (eg files in vendor, etc, compile and are not 404'ing in production environment)
  • Make sure environment variables are setup correctly (need new Heroku, AWS)
  • Outbound Mail Provider Setup and working in production (eg SendGrid, Mandrill)
  • Run rake notes and check for any actionable items
  • Only Use Environment Variables instead of hard coded strings (these should not be in version control)

Punt:

  • Implemented a log tracker? Eg log entries
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment