i created
a custom staging environment in my rails app by adding new file config/environments/staging.rb
, same as config/environments/development.rb
and then added database config config/database.yml
staging:
adapter: sqlite3
database: db/staging.sqlite3
pool: 5
timeout: 5000
now, i want to make staging
the default environment
of my rails application instead of development.How to achieve it?