{"id":13469377,"url":"https://github.com/maybe-finance/maybe","last_synced_at":"2025-05-12T16:30:06.940Z","repository":{"id":215012578,"uuid":"737898780","full_name":"maybe-finance/maybe","owner":"maybe-finance","description":"The personal finance app for everyone","archived":false,"fork":false,"pushed_at":"2025-05-05T12:53:20.000Z","size":5824,"stargazers_count":43944,"open_issues_count":51,"forks_count":3179,"subscribers_count":193,"default_branch":"main","last_synced_at":"2025-05-05T14:45:37.656Z","etag":null,"topics":["finance","hotwire","personal-finance","postgresql","ruby","ruby-on-rails","stimulusjs","turbo"],"latest_commit_sha":null,"homepage":"https://maybefinance.com","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/maybe-finance.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","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}},"created_at":"2024-01-01T22:23:46.000Z","updated_at":"2025-05-05T14:01:09.000Z","dependencies_parsed_at":"2024-02-02T15:46:13.508Z","dependency_job_id":"c9db56be-363e-4a35-80af-670a3b0234bd","html_url":"https://github.com/maybe-finance/maybe","commit_stats":{"total_commits":583,"total_committers":72,"mean_commits":8.097222222222221,"dds":0.725557461406518,"last_synced_commit":"b4b4e5df31ee5c9f2f676953ee9e85dd1308396e"},"previous_names":["maybe-finance/maybe"],"tags_count":29,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maybe-finance%2Fmaybe","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maybe-finance%2Fmaybe/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maybe-finance%2Fmaybe/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maybe-finance%2Fmaybe/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/maybe-finance","download_url":"https://codeload.github.com/maybe-finance/maybe/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253776551,"owners_count":21962506,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["finance","hotwire","personal-finance","postgresql","ruby","ruby-on-rails","stimulusjs","turbo"],"created_at":"2024-07-31T15:01:36.576Z","updated_at":"2025-05-12T16:30:06.905Z","avatar_url":"https://github.com/maybe-finance.png","language":"Ruby","readme":"\n\u003cimg width=\"1190\" alt=\"maybe_hero\" src=\"https://github.com/user-attachments/assets/13fc5ef4-ce0f-4073-a163-9dbc3eb4c8e5\" /\u003e\n\n# Maybe: The personal finance app for everyone\n\n\u003cb\u003eGet\ninvolved: [Discord](https://link.maybe.co/discord) • [Website](https://maybefinance.com) • [Issues](https://github.com/maybe-finance/maybe/issues)\u003c/b\u003e\n\n## Backstory\n\nWe spent the better part of 2021/2022 building a personal finance + wealth\nmanagement app called, Maybe. Very full-featured, including an \"Ask an Advisor\"\nfeature which connected users with an actual CFP/CFA to help them with their\nfinances (all included in your subscription).\n\nThe business end of things didn't work out, and so we shut things down mid-2023.\n\nWe spent the better part of $1,000,000 building the app (employees +\ncontractors, data providers/services, infrastructure, etc.).\n\nWe're now reviving the product as a fully open-source project. The goal is to\nlet you run the app yourself, for free, and use it to manage your own finances\nand eventually offer a hosted version of the app for a small monthly fee.\n\n## Maybe Hosting\n\nThere are 2 primary ways to use the Maybe app:\n\n1. Managed (easiest) - we're in alpha and release invites in our Discord\n2. [Self-host with Docker](docs/hosting/docker.md)\n\n## Contributing\n\nBefore contributing, you'll likely find it helpful\nto [understand context and general vision/direction](https://github.com/maybe-finance/maybe/wiki).\n\nOnce you've done that, please visit\nour [contributing guide](https://github.com/maybe-finance/maybe/blob/main/CONTRIBUTING.md)\nto get started!\n\n## Local Development Setup\n\n**If you are trying to _self-host_ the Maybe app, stop here. You\nshould [read this guide to get started](docs/hosting/docker.md).**\n\nThe instructions below are for developers to get started with contributing to the app.\n\n### Requirements\n\n- See `.ruby-version` file for required Ruby version\n- PostgreSQL \u003e9.3 (ideally, latest stable version)\n\nAfter cloning the repo, the basic setup commands are:\n\n```sh\ncd maybe\ncp .env.local.example .env.local\nbin/setup\nbin/dev\n\n# Optionally, load demo data\nrake demo_data:reset\n```\n\nAnd visit http://localhost:3000 to see the app. You can use the following\ncredentials to log in (generated by DB seed):\n\n- Email: `user@maybe.local`\n- Password: `password`\n\nFor further instructions, see guides below.\n\n### Multi-currency support\n\nIf you'd like multi-currency support, there are a few extra steps to follow.\n\n1. Sign up for an API key at [Synth](https://synthfinance.com). It's a Maybe\n   product and the free plan is sufficient for basic multi-currency support.\n2. Add your API key to your `.env` file.\n\n### Setup Guides\n\n- [Mac dev setup guide](https://github.com/maybe-finance/maybe/wiki/Mac-Dev-Setup-Guide)\n- [Linux dev setup guide](https://github.com/maybe-finance/maybe/wiki/Linux-Dev-Setup-Guide)\n- [Windows dev setup guide](https://github.com/maybe-finance/maybe/wiki/Windows-Dev-Setup-Guide)\n- Dev containers - visit [this guide](https://code.visualstudio.com/docs/devcontainers/containers) to learn more\n\n## Repo Activity\n\n![Repo Activity](https://repobeats.axiom.co/api/embed/7866c9790deba0baf63ca1688b209130b306ea4e.svg \"Repobeats analytics image\")\n\n## Copyright \u0026 license\n\nMaybe is distributed under\nan [AGPLv3 license](https://github.com/maybe-finance/maybe/blob/main/LICENSE). \"\nMaybe\" is a trademark of Maybe Finance, Inc.\n","funding_links":[],"categories":["Ruby","Finance","ruby","Web","Miscellaneous","Open Source Rails Apps","Removed Projects"],"sub_categories":["E-books Readers","Good Web Applications","Rails codebases to study","Articles","Uncategorized"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaybe-finance%2Fmaybe","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaybe-finance%2Fmaybe","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaybe-finance%2Fmaybe/lists"}