Skip to content

Instantly share code, notes, and snippets.

@codatory
Created November 3, 2011 17:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save codatory/1337183 to your computer and use it in GitHub Desktop.
Save codatory/1337183 to your computer and use it in GitHub Desktop.
(Ideal) Rails Project Pre-Start Checklist

(Ideal) Rails Project Pre-Start Checklist

Source Control

  • Code is under source control (git) with a remote I can read/write to

Testing

  • Be aware of test coverage
  • Code is under continuous integration

Deployment

  • The code has a known deployment process
  • The process is appropriately automated
  • The process is appropriately robust

Bootstrapping

  • The application can bootstrap itself (seeds work, config examples)
  • Dependencies are documented (bundler)

Backup

  • Is the DB being backed up?
  • Is it being backed up someplace reasonable? (not /backups)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment