Giter Site home page Giter Site logo

house-app's Introduction

House App

This is a demo of how to build a fullstack content management system (CMS) using Ruby of Rails. It contains the management of resources such as houses, agents and inspections.

Pre-requisite

Ruby and Ruby of rails should be installed. gem install rails

Start the app

rails server

Use the rails console

Use the Rails console to directly interact with your domain model. You can interact directly with ActiveRecord objects. rails console

See current routes

Rails routes are configured in config/routes.rb. To see current routes and their associated prefixes. rails routes

Generating models

The following example commands generates active record models rails generate model House address:string size:integer sold:boolean bed:integer bath:integer garage:integer image:string

Applying db migrations

After generating models you need to applying migrations to change the database schema rails db:migrate

Generate a migration file

rails generate migration CreateHousesAgentsJoinTable

Applying database seeds

Seeds allow database to be initiated with some sample data. Just use active record in your db/seeds.rb file rails db:seed

Authentication

Session based authentication is implemented in this demo. Ensure gem 'bcrypt', '~> 3.1.7' in your Gemfile is uncommented and run bundle install

house-app's People

Watchers

James Cloos avatar Schuman Zhang avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.