{"id":35150211,"url":"https://github.com/ck3g/homebugh","last_synced_at":"2026-04-01T17:20:42.909Z","repository":{"id":39702994,"uuid":"1398493","full_name":"ck3g/homebugh","owner":"ck3g","description":"Expense tracking web app","archived":false,"fork":false,"pushed_at":"2025-07-21T16:12:58.000Z","size":3293,"stargazers_count":9,"open_issues_count":18,"forks_count":17,"subscribers_count":2,"default_branch":"master","last_synced_at":"2026-03-28T00:37:16.635Z","etag":null,"topics":["budget-app","expense-tracker","expenses","finance-management","hacktoberfest","home-finances","ruby","ruby-on-rails"],"latest_commit_sha":null,"homepage":"http://homebugh.info","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ck3g.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2011-02-22T17:24:01.000Z","updated_at":"2025-12-18T22:02:50.000Z","dependencies_parsed_at":"2025-06-26T11:18:43.502Z","dependency_job_id":"c6f37825-115a-47e8-bc90-1dc4e80c7f70","html_url":"https://github.com/ck3g/homebugh","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ck3g/homebugh","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ck3g%2Fhomebugh","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ck3g%2Fhomebugh/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ck3g%2Fhomebugh/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ck3g%2Fhomebugh/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ck3g","download_url":"https://codeload.github.com/ck3g/homebugh/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ck3g%2Fhomebugh/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31290537,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T13:12:26.723Z","status":"ssl_error","status_checked_at":"2026-04-01T13:12:25.102Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["budget-app","expense-tracker","expenses","finance-management","hacktoberfest","home-finances","ruby","ruby-on-rails"],"created_at":"2025-12-28T15:06:00.877Z","updated_at":"2026-04-01T17:20:42.890Z","avatar_url":"https://github.com/ck3g.png","language":"Ruby","readme":"## HomeBugh\n\n[![Code Climate](https://codeclimate.com/github/ck3g/homebugh/badges/gpa.svg)](https://codeclimate.com/github/ck3g/homebugh)\n[![Test Coverage](https://codeclimate.com/github/ck3g/homebugh/badges/coverage.svg)](https://codeclimate.com/github/ck3g/homebugh)\n\nThe expense tracking app.\n\n## Related repositories\n\n* [iOS app](https://github.com/ck3g/homebugh-ios)\n* [API](https://github.com/ck3g/homebugh-api)\n\n## About the project\n\nHomeBugh app is a web application to track your home finance expenses.\n\nThere are a bunch of articles and books describing the benefit of tracking expenses.\nSo that's exactly what we do with my family. We track all our expenses.\n\nThere are plenty of ways to track your expenses, you can use an Excel spreadsheet, third-party applications.\nI've decided to build a tool for myself.\nThat's how the project was born.\n\nIt has (almost) all required pieces of functionality I need.\nAnd I work on some improvements from time to time.\n\n## The project goal\n\nYet another goal of that project is to practice software development.\nI've started it when I started to learn Ruby and Ruby on Rails.\n\nIt helped me to experiment with different code practices, implement the features I needed in the way I wanted and knew.\n\nThere are still some parts I'd like to implement.\nI'm thinking to build a mobile application, that will require providing an API.\n\nAnother idea is to make the project available for everyone.\nAt the moment, I think I'm the only user of that application which is hosted on [HomeBugh.info](https://homebugh.info).\n\nI understand some people don't want to share their personal finances with some service.\nBased on that, I'd like to provide instructions for others to set up the project on their own hosting service.\n\nI'm planning to add a demo user to the project, so everyone can take a look at the project without the need to register.\n\nIf the project gets more users, that should bring new ideas on improvements in different areas of the project.\nSo, if you want to practice web development that project can be a good place for you.\n\n\u003chr\u003e\n\n### Configure development environment\n\n#### Prerequisites\n\nBe sure there are required dependencies installed on your computer:\n\n* Ruby version 2.7\n* MySQL\n\n#### Configuration steps\n\n1. Fork and clone the repo `$ git clone git@github.com:ck3g/homebugh.git`\n1. `$ cd homebugh`\n1. Copy and update the database config according to your local MySQL configuration\n    ```shell\n    $ cp config/database.yml.example config/database.yml\n    ```\n1. Install all the required gems\n    ```shell\n    $ bundle\n    ```\n1. Migrate the database:\n    ```shell\n    $ bundle exec rails db:environment:set RAILS_ENV=development\n    $ bundle exec rails db:create db:schema:load db:migrate db:test:prepare\n    ```\n1. Seed the database with required data\n    ```shell\n    $ bundle exec rails db:seed\n    ```\n1. Run the test suite to ensure everything is in working state\n    ```shell\n    bundle exec rspec spec/\n    ```\n1. Start the Rails server\n    ```shell\n    bundle exec rails s\n    ```\n1. Open http://localhost:3000 in your browser\n1. Use `user@example.com` with the `password` to sign in.\n\n### Deploying to Heroku\n\nWould you like to deploy the app to Heroku? Check out our [experimental guide](./docs/deploying_to_heroku.md).\n\n### Contributing\n\nAny contributions to the project are always welcome. Please check out the [Contributing guide](./CONTRIBUTING.md).\n\n### License\n\nHomeBugh app is released under the [MIT License](./LICENSE.md).\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fck3g%2Fhomebugh","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fck3g%2Fhomebugh","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fck3g%2Fhomebugh/lists"}