To assess the ability of the candidate to setup and deploy a simple Rails application with different services to cloud.
- Build a form that takes the following information from the user:
- First name
- Last name
- Date of Birth
- A URL to post this information to
-
Save this information in a database table once the form is submitted and schedule a background job to be processed in 10 seconds (in any background processing framework of choice. It can be sidekiq, delayed_jobs, good_jobs...)
-
Background Job should be responsible for posting the information of the user to mock API endpoint. You can create mock API endpoints by using a free service such as https://beeceptor.com/
-
Write a single integration test or several unit tests in the framework of your choice(rspec, test-unit) that test the developed functionality.
-
Deploy the application to any cloud of your choice (Digital Ocean, Heroku, AWS, etc...). Cloud Provider of choice is not important, you can choose the one that has easiest integration.
- Application has to be developed in Ruby programming language. Framework does not matter, but Ruby on Rails has the easiest setup.
- Repository should be available in Github
- Application has to be deployed
- Deployment is automated in any CI tool(Github Actions, Cirlce CI etc...)
You can skip background job configuration, but we prefer if you have it configured, as it will asses your ability to setup and configure unfamiliar tools.