Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.49 KB

README.md

File metadata and controls

31 lines (23 loc) · 1.49 KB

JustNoteThis

Build Status Actions Status Requirements Status codecov Maintainability

Instructions:

  • Clone this app,
  • Enter in project folder,
  • Set default ruby: rvm use ruby-2.6.5,
  • Install dependencies with bundle,
  • Run db migrations and seeders make migrate,
  • Start app in development mode: make serve.

Generating a new migration:

  • rake db:create_migration NAME=name_of_migration,
  • Edit file created in db/migrate/,
  • Run: rake db:migrate,

Running tests:

  • Running tests: make test