adspace
How you run your rails application without creating databases?
Answer Posted / Pawan Chaubey
To run a Rails application without creating a database, you can use the built-in SQLite3 database for development purposes. You can specify this in your config/database.yml file by setting the default value of development under the 'sqlite3' section. Additionally, running `RAILS_ENV=test rails server` will start the Rails server using the test environment which does not need a database.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers