Skip to content

Instantly share code, notes, and snippets.

@winston
Last active September 28, 2015 15:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save winston/256d67a52337d3ff68ff to your computer and use it in GitHub Desktop.
Save winston/256d67a52337d3ff68ff to your computer and use it in GitHub Desktop.
For enabling SQLite3 in Rails
development:
adapter: sqlite3
database: db/development.sqlite3
pool: 5
timeout: 5000
test:
adapter: sqlite3
database: db/test.sqlite3
pool: 5
timeout: 5000
production:
adapter: sqlite3
database: db/production.sqlite3
pool: 5
timeout: 5000
gem "sqlite3"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment