Skip to content

Latest commit

 

History

History
58 lines (37 loc) · 1.71 KB

00_INSTALLATION.md

File metadata and controls

58 lines (37 loc) · 1.71 KB

MENU README | How to run locally | REST API doc | Web app screenshots | Branch descriptions

🚆 Rails Way App

Instructions to setup and run the application locally.

📚 Table of contents

System dependencies

  • SQLite3
  • Ruby 3.3.4
    • bundler >= 2.5.14

How to setup the application

  1. Install system dependencies
  2. Access one of the branches
  3. Create a config/master.key file with the following content:
echo '257d6f71fb8c5a5e9724a130c0e35c5d' > config/master.key

chmod 600 config/master.key
  1. Run bin/setup

⬆ back to top

How to run the application locally

  1. bin/rails s
  2. Open in your browser: http://localhost:3000

⬆ back to top

How to run the test suite (and generate coverage report)

  • bin/rails test

How to generate the code quality

  • bin/rails rubycritic

How to generate the App statistics

  • bin/rails stats

⬆ back to top