Skip to content

Latest commit

 

History

History
56 lines (44 loc) · 1.08 KB

README.md

File metadata and controls

56 lines (44 loc) · 1.08 KB

realestate-nft-marketplace

Trabajo de graduación UVG titulado "Traspaso inmediato e inteligente de propiedades usando blockchain y NFTs".

Autores:

Ruby Setup

  • Install rvm
  • rvm install 2.7.2
  • bundle install
  • Troubleshoot:
    • MacOS: brew install libpq
    • Ubuntu: sudo apt-get -y install libpq-dev
  • EDITOR="nano" rails credentials:edit --environment development
db:
    host: localhost
    port: 5432
    username: postgres
    password: ""
    database: nft_realestate_dev

aws:
    access_key_id: ""
    secret_access_key: ""
    region: ""
    bucket: ""

hmac:
    secret: somehmacsecret

secret_key_base: somesecretkeybase
  • rake dev:db:reset
  • Guardar password

Conventional Commits

  • feat
  • fix
  • docs
  • test
  • ci
  • refactor
  • build

Rubocop

  • rubocop --autocorrect --only Style/StringLiterals && rubocop --autocorrect --only Style/WordArray
  • bundle exec rubocop --parallel