Skip to content

Latest commit

 

History

History
61 lines (42 loc) · 2.11 KB

README.md

File metadata and controls

61 lines (42 loc) · 2.11 KB

medical-expenses-manager

CI Maintainability codecov GitHub license JavaScript Style Guide Ruby Style Guide FOSSA Status

Manager of medical expenses deductions

Prerequisites

  • Ruby 3.1+
  • Node.js 14.17.0+ || 16.0.0+
  • Yarn 1.x+

Installation

Set up Rails app

First, install the gems and javascript packages required by the application:

bundle
yarn

Next, execute the database migrations/schema setup:

bin/rails db:setup

Start the app

development

bin/rails start

production

bin/rails assets:precompile RAILS_ENV=production
bin/rails s -e production

License

FOSSA Status

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request