Explain how you can run rails application without creating databases?
Answer / Brijesh Kumar Mishra
You can run a Rails application without a database by setting up `dummy` or `fixture` data. To use dummy data, add `config.active_record.dummy_data = true` to your environment file.nnFor fixture data, you'll need to create .yml files in the db/test/fixtures directory with test data. Set the environment to 'test' before running the application.
| Is This Answer Correct ? | 0 Yes | 0 No |
how you can run Rails application without creating databases?
Explain the features of ruby on rails.
Explain me what is the function of orm in ruby on rails?
Tell me what is coc in rails?
What is rails script? Name some of them?
who developed rails?
Write a program to show the functionality of request.xhr in ruby on rails ?
what is the difference between Dynamic and Static Scaffolding?
Explain bundler in rails.
what are helpers and how to use helpers in ror?
Explain me what is the difference between concern and application_controller.rb in ruby on rails?
How is direct different from render?