Skip to content

Setup a SQLite Database

johnmuhl edited this page Aug 24, 2010 · 1 revision

If you want to use SQLite all you’ll have to do is create your config/database.yml since the SQLite db files will be created when you run the setup script.

development:
  adapter: sqlite3
  database: db/radiant_dev.sqlite.db

test:
  adapter: sqlite3
  database: db/radiant_test.sqlite.db

production:
  adapter: sqlite3
  database: db/radiant_live.sqlite.db
Clone this wiki locally