carlosmendes / airbnb-clone

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LIVECODE

Let's build a simple AirBnB clone with a remote static JSON DB with:

  • '/' -> A root page listing flats
  • '/flats/:id' -> A show page for a specific flat
require "open-uri"

url = "https://raw.githubusercontent.com/lewagon/flats-boilerplate/master/flats.json"
flats = JSON.parse(open(url).read)

Optional

Add bootstrap

About


Languages

Language:Ruby 75.7%Language:HTML 17.7%Language:JavaScript 3.3%Language:CSS 2.6%Language:CoffeeScript 0.6%