This project was created with:
- ERB (for template system with Ruby)
- Pry-byebug (for debugging)
- Geocoder
To display places on main page was used CSS grid:
.box-flex{
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 16px;
margin: 10px;
}
.box-flat{
margin: 10px 0;
border: 1px solid #E8E8E8;
box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}
Download or clone it. . Then run in the main folder the command rails server
. If needed, run bundle install
to check if all gems are correctly installed. Then open the project on localhost:3000/flats
As user you can manipulate all CRUD operations like:
- Insert a place (with address);
- Edit a place
- Delete a place;
- Search for any place on search bar;
The user can also use the search field to search for a desired place.
April 30
- Project created;
- Adding bootstrap, jquery, popper;
- Adding font-awesome, simple_form;
- Models and Controllers created with Scaffold;
- Database created;
- Adding geocorder gem;
- Adding a migration to insert latitude and longitude;
- Adding mapbox;
- Fixing bugs and adding markers;
- Fixing zoom;
May 1
- Adding box content to marker;
- Adding search bar;
- Adding a migration to insert photo;