Please time box this assignment to 2 hours
In your main app.rb file, create instance variables that query the Database using active record.
In your views, replace hardcoded html with erb. For example:
<% @apartments.each do |apartment| %>
<li><%= apartment.address %></li>
<% end %>