Skip to content

A home finance tracker using Ruby on Rails. Calendar views to see spending and overall charts to see monthly and yearly spending.

License

Notifications You must be signed in to change notification settings

remomueller/balance

Repository files navigation

Balance

Build Status Code Climate

Easy home finance tracker, using Rails 6.1+ and Ruby 3.0+.

Installation

Prerequisites Install Guide: Instructions for installing prerequisites like Ruby, Git, JavaScript compiler, etc.

Once you have the prerequisites in place, you can proceed to install bundler which will handle most of the remaining dependencies.

gem install bundler

This README assumes the following installation directory: /var/www/balance

cd /var/www

git clone https://github.com/remomueller/balance.git

cd balance

bundle install

Install default configuration files for database connection, email server connection, server url, and application name.

ruby lib/initial_setup.rb

rails db:migrate RAILS_ENV=production

rails assets:precompile RAILS_ENV=production

Run Rails Server (or use Apache or nginx)

rails s -p80

Open a browser and go to: http://localhost

All done!

Production

git pull; bundle update; rails db:migrate RAILS_ENV=production; rails log:clear RAILS_ENV=production; rails tmp:clear RAILS_ENV=production; rails assets:precompile RAILS_ENV=production;touch tmp/restart.txt

Contributing to Balance

  • Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
  • Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
  • Fork the project
  • Start a feature/bugfix branch
  • Commit and push until you are happy with your contribution
  • Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
  • Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.

License

Balance is released under the MIT License.

About

A home finance tracker using Ruby on Rails. Calendar views to see spending and overall charts to see monthly and yearly spending.

Resources

License

Stars

Watchers

Forks

Packages

No packages published