Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mishina2228/medical-expenses-manager
Manager of medical expenses deductions
https://github.com/mishina2228/medical-expenses-manager
rails ruby
Last synced: 3 months ago
JSON representation
Manager of medical expenses deductions
- Host: GitHub
- URL: https://github.com/mishina2228/medical-expenses-manager
- Owner: mishina2228
- License: mit
- Created: 2018-06-17T14:22:43.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-09-18T11:33:09.000Z (4 months ago)
- Last Synced: 2024-09-18T16:19:59.911Z (4 months ago)
- Topics: rails, ruby
- Language: Ruby
- Homepage:
- Size: 1.84 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# medical-expenses-manager
[![CI](https://github.com/mishina2228/medical-expenses-manager/workflows/ci/badge.svg)](https://github.com/mishina2228/medical-expenses-manager/actions)
[![Maintainability](https://api.codeclimate.com/v1/badges/58fc7e9f69118ecdb8ff/maintainability)](https://codeclimate.com/github/mishina2228/medical-expenses-manager/maintainability)
[![codecov](https://codecov.io/gh/mishina2228/medical-expenses-manager/branch/master/graph/badge.svg)](https://codecov.io/gh/mishina2228/medical-expenses-manager)
[![GitHub license](https://img.shields.io/github/license/mishina2228/medical-expenses-manager)](https://github.com/mishina2228/medical-expenses-manager/blob/master/LICENSE)
[![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)
[![Ruby Style Guide](https://img.shields.io/badge/code_style-rubocop-brightgreen.svg)](https://github.com/rubocop/rubocop)
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fmishina2228%2Fmedical-expenses-manager.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Fmishina2228%2Fmedical-expenses-manager?ref=badge_shield)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:
```sh
bundle
yarn
```Next, execute the database migrations/schema setup:
```sh
bin/rails db:setup
```### Start the app
#### development
```sh
bin/dev
```#### production
```sh
bin/rails assets:precompile RAILS_ENV=production
bin/rails s -e production
```## License
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fmishina2228%2Fmedical-expenses-manager.svg?type=large)](https://app.fossa.com/projects/git%2Bgithub.com%2Fmishina2228%2Fmedical-expenses-manager?ref=badge_large)
## 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