- Make sure
ruby
is installed - version 3.3.6. - Run
bundle install
to install dependencies. - Run
rspec
to run specs. - Start the server with
rails s
. - The application should be running at
http://localhost:3000
.
- Update the functionality/refactor
bulk_importer
as it's not really efficient in terms of performance. Consider usingactiverecord-import
gem to make the request in a bulk and reduce the amount of requests. - Improve spec coverage by adding request spec for
bulk_importer
controller. - Run the bulk importing async with Sidekiq as an option.
- Use I18n instead of hardcoding string values.