{"id":22786357,"url":"https://github.com/kdlamini/budget-app","last_synced_at":"2026-04-29T17:38:54.533Z","repository":{"id":41891421,"uuid":"470137640","full_name":"KDlamini/Budget-app","owner":"KDlamini","description":"A mobile web application where you can manage your budget: you have a list of transactions associated with a category, so that you can see how much money you spent and on what.","archived":false,"fork":false,"pushed_at":"2022-04-24T11:51:22.000Z","size":181,"stargazers_count":1,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"dev","last_synced_at":"2025-03-30T15:47:26.910Z","etag":null,"topics":["rails","ruby"],"latest_commit_sha":null,"homepage":"https://young-falls-16975.herokuapp.com/","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/KDlamini.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-03-15T11:53:06.000Z","updated_at":"2022-06-02T09:13:57.000Z","dependencies_parsed_at":"2022-09-24T15:12:49.273Z","dependency_job_id":null,"html_url":"https://github.com/KDlamini/Budget-app","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/KDlamini/Budget-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KDlamini%2FBudget-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KDlamini%2FBudget-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KDlamini%2FBudget-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KDlamini%2FBudget-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/KDlamini","download_url":"https://codeload.github.com/KDlamini/Budget-app/tar.gz/refs/heads/dev","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KDlamini%2FBudget-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32437109,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T17:34:55.123Z","status":"ssl_error","status_checked_at":"2026-04-29T17:34:45.749Z","response_time":110,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["rails","ruby"],"created_at":"2024-12-11T23:23:40.507Z","updated_at":"2026-04-29T17:38:54.515Z","avatar_url":"https://github.com/KDlamini.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"![](https://img.shields.io/badge/Microverse-blueviolet)\n\n#### Original design idea by **[Gregoire Vella on Behance](https://www.behance.net/gregoirevella)**, in association with the [Creative Commons license of the design](https://creativecommons.org/licenses/by-nc/4.0/) of the design.\n\u003cbr /\u003e\n\n# GoSave\n\nA mobile web application where you can manage your budget: you have a list of transactions associated with a category, so that you can see how much money you spent and on what.\n\n## Built With\n\n- Ruby on Rails\n\n## Live Demo\n[Heroku](https://young-falls-16975.herokuapp.com/)\n\n## Additional Tools\n\n- rubocop\n- stylelint\n- Ruby Gems\n\n## Versions\n- Ruby  ~3.1.0\n- PostgreSQL  ~12.9\n- Node.js  ~14.17.6\n- Yarn  ~1.22.17\n\n## `Getting Started`\n\nTo get a local copy of this project:\n\nClone this repository or download the Zip folder:\n```\n$ git clone git@github.com:KDlamini/Budget-app.git\n```\nThen:\n```\n$ cd Budget-app\n\n$ gem install bundler\n\n$ bundle install\n```\n\nTo start App:\n```\n$ rails server\n```\n\nTo view on browser:\n```\nhttp://localhost:3000\n```\n\n## `Database creation`\n\nCreate a Postgres user:\n```\n$ su - postgres\n```\n\nAfter that access Postgres:\n```\npsql\n```\n\nThen create a user (or a “role”, as Postgres calls it):\n```\nCREATE ROLE budget WITH CREATEDB LOGIN PASSWORD 'budget';\n```\n\nInitialize the database:\n```\n$ bin/rails db:setup\n```\n\nMigrate the database:\n```\n$ bin/rails db:create\n```\n\n## `Tests`\n\n### Running specs:\nDefault: Run all spec files (i.e., those matching spec/**/*_spec.rb):\n```\n$ bundle exec rspec\n```\nRun all spec files in a single directory (recursively):\n```\n$ bundle exec rspec spec/models\n```\nRun a single spec file:\n```\n$ bundle exec rspec spec/models/user_spec.rb\n```\n\nRun a single example from a spec file (by line number):\n```\n$ bundle exec rspec spec/models/user_spec.rb:8\n```\n\nSee all options for running specs:\n```\n$ bundle exec rspec --help\n```\n\n### rails tests:\n\n```\n$ bin/rails test\n```\n\n### To track linter errors locally follow these steps:\n\nTrack Ruby linter errors run:\n```\n$ rubocop\n```\nTo auto-correct correctable Rubocop offenses run:\n```\n$ rubocop --auto-correct-all | rubocop -A\n```\n\n## `Authors`\n\n👤 **Simo Nkosi**\n\n- GitHub: [@KDlamini](https://github.com/KDlamini)\n- Twitter: [@RealSimoNkosi](https://twitter.com/RealSimoNkosi)\n- LinkedIn: [LinkedIn](https://www.linkedin.com/in/simo-nkosi-418523180/)\n\n## 🤝 Contributing\n\nContributions, issues, and feature requests are welcome!\n\nFeel free to check the [issues page](https://github.com/KDlamini/Budget-app/issues).\n\n## Show your support\n\nGive a ⭐️ if you like this project!\n\n## Acknowledgments\n\n- This project is part module 5 in the Microverse study program.\n- Thanks to the Microverse team for the great curriculum.\n- Thanks to Code Reviewers for the insightful feedback.\n- A great thanks to My coding partners, morning session team, and standup team Partners for their contributions.\n\n## 📝 License\n\nThis project is [MIT](./MIT.md) licensed.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkdlamini%2Fbudget-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkdlamini%2Fbudget-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkdlamini%2Fbudget-app/lists"}