Managing loaner chromebooks for students and teachers in the HUUSD school district.
at main 29 lines 731 B view raw
1# SQLite. Versions 3.8.0 and up are supported. 2# gem install sqlite3 3# 4# Ensure the SQLite 3 gem is defined in your Gemfile 5# gem "sqlite3" 6# 7 8default: &default 9 adapter: postgresql 10 encoding: unicode 11 pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> 12 url: <%= ENV['DATABASE_URL'] %> 13 14development: 15 adapter: sqlite3 16 pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> 17 timeout: 5000 18 database: storage/development.sqlite3 19 20# Warning: The database defined as "test" will be erased and 21# re-generated from your development database when you run "rake". 22# Do not set this db to the same as development or production. 23test: 24 <<: *default 25 database: ittool_test 26 27production: 28 <<: *default 29 database: ittool_production