Giter VIP home page Giter VIP logo

clearbnb2's Introduction

Clearbnb

Project similar to Airbnb. Book short term rentals.

Preview

Live - https:// [TODO]

TODO

  • Install webpacker
    • $ rails webpacker:install
    • nodenv local 14.7.0

Model

TODO:

  • Listings table
    • title
    • about:text
    • max_guests:integer
    • host:references
    • latitude
    • longitude
    • address_line1
    • address_line2
    • city
    • state
    • postal_code
    • country
    • type (cabin, farm, apartment, condo, hut, yurt, treehouse, trailer)
  • Geolocation
    • Stimulus
  • Reviews

Generated by Rails ERD. Run rails erd to regenerate (must have graphviz).

ERD Diagram

Version

  • ruby 3.1.2
  • rails 7.0.4

Setup Instructions

  • Install PostgreSQL
sudo apt update
sudo apt install postgresql postgresql-contrib libpq-dev
  • In Development Mode, prevent installation of production gems
$ bundle config set --local without 'production'
$ bundle install
$ bundle lock --add-platform x86_64-linux

Deployment Instructions

  • Add User/Role and Database. The name must be the same as your username in Ubuntu. For production it will be deploy. If deploy User/Role already exits, skip this step
sudo -u postgres createuser -s deploy -P
sudo -u postgres createdb deploy

-s = Add the superuser privilege
-P = Password creation prompt

  • Install App Dependencies on Production
bundle config set --local deployment 'true'
bundle config set --local without 'development test'
bundle install
  • Create DB on Production
RAILS_ENV=production rails db:create
RAILS_ENV=production bundle exec rake assets:precompile db:migrate
sudo service nginx reload
  • View DB exists:
psql
\l

\l - list all databases \q - quit

References

clearbnb2's People

Contributors

overdrivemachines avatar

Watchers

 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.