{"id":31588616,"url":"https://github.com/raulpe7eira/budget_ex","last_synced_at":"2026-05-14T22:45:05.205Z","repository":{"id":314680928,"uuid":"1056386066","full_name":"raulpe7eira/budget_ex","owner":"raulpe7eira","description":"A collaborative budget tracking application built with Phoenix LiveView and Elixir","archived":false,"fork":false,"pushed_at":"2025-09-15T12:40:41.000Z","size":151,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-27T22:39:32.881Z","etag":null,"topics":["elixir","liveview","phoenix","postgresql"],"latest_commit_sha":null,"homepage":"","language":"Elixir","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/raulpe7eira.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,"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":"2025-09-14T01:23:04.000Z","updated_at":"2025-09-15T12:40:46.000Z","dependencies_parsed_at":"2025-09-14T04:11:49.998Z","dependency_job_id":"f66ab1e5-e35e-4d8b-aa52-5446f9049b68","html_url":"https://github.com/raulpe7eira/budget_ex","commit_stats":null,"previous_names":["raulpe7eira/budget_ex"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/raulpe7eira/budget_ex","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raulpe7eira%2Fbudget_ex","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raulpe7eira%2Fbudget_ex/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raulpe7eira%2Fbudget_ex/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raulpe7eira%2Fbudget_ex/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/raulpe7eira","download_url":"https://codeload.github.com/raulpe7eira/budget_ex/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raulpe7eira%2Fbudget_ex/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33046546,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"online","status_checked_at":"2026-05-14T02:00:06.663Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["elixir","liveview","phoenix","postgresql"],"created_at":"2025-10-06T02:11:34.468Z","updated_at":"2026-05-14T22:45:05.166Z","avatar_url":"https://github.com/raulpe7eira.png","language":"Elixir","funding_links":[],"categories":[],"sub_categories":[],"readme":"# BudgetEx\n\nA collaborative budget tracking application built with Phoenix LiveView and Elixir.\n\n\u003cimg width=\"1440\" height=\"1017\" alt=\"Screenshot 2025-09-13 at 22 19 49\" src=\"https://github.com/user-attachments/assets/10270587-fc9e-4beb-af45-1e0fd15210b1\" /\u003e\n\n## About\n\nThis project is based on the YouTube playlist tutorial series by [Christian Alexander](https://github.com/ChristianAlexander) available at:\nhttps://youtube.com/playlist?list=PL31bV6MaFAPllC8JP0vaRKrVm5kj7c1vc\n\n## Architecture\n\n```mermaid\ngraph TB\n    subgraph \"Frontend Layer\"\n        A[Phoenix LiveView Pages]\n        A1[BudgetListLive]\n        A2[BudgetShowLive]\n        A3[PeriodShowLive]\n        A4[UserAuthLives]\n        A --\u003e A1\n        A --\u003e A2\n        A --\u003e A3\n        A --\u003e A4\n    end\n\n    subgraph \"Web Layer (BudgetExWeb)\"\n        B[Router]\n        C[Controllers]\n        D[LiveView Components]\n        E[Authentication Pipeline]\n        B --\u003e C\n        B --\u003e A\n        E --\u003e A\n    end\n\n    subgraph \"Context Layer (BudgetEx)\"\n        F[Accounts Context]\n        G[Tracking Context]\n\n        subgraph \"Accounts\"\n            F1[User]\n            F2[UserToken]\n            F3[UserNotifier]\n            F --\u003e F1\n            F --\u003e F2\n            F --\u003e F3\n        end\n\n        subgraph \"Tracking\"\n            G1[Budget]\n            G2[BudgetPeriod]\n            G3[BudgetTransaction]\n            G4[BudgetCollaborator]\n            G5[BudgetJoinLink]\n            G --\u003e G1\n            G --\u003e G2\n            G --\u003e G3\n            G --\u003e G4\n            G --\u003e G5\n        end\n    end\n\n    subgraph \"Data Layer\"\n        H[PostgreSQL Database]\n        I[Ecto Repo]\n        J[Migrations]\n        I --\u003e H\n        J --\u003e H\n    end\n\n    subgraph \"Asset Pipeline\"\n        K[Tailwind CSS]\n        L[Esbuild JavaScript]\n        M[Heroicons]\n        N[Static Assets]\n        K --\u003e N\n        L --\u003e N\n        M --\u003e N\n    end\n\n    A --\u003e B\n    C --\u003e F\n    C --\u003e G\n    A --\u003e F\n    A --\u003e G\n    F --\u003e I\n    G --\u003e I\n    A --\u003e N\n\n    classDef context fill:#e1f5fe\n    classDef web fill:#f3e5f5\n    classDef data fill:#e8f5e8\n    classDef assets fill:#fff3e0\n\n    class F,G context\n    class A,B,C,D,E web\n    class H,I,J data\n    class K,L,M,N assets\n```\n\n## Features\n\n- **User Authentication**: Registration, login, password reset with email confirmation\n- **Collaborative Budgets**: Create budgets and invite collaborators via shareable links\n- **Budget Periods**: Organize budgets into time-based periods (monthly, quarterly, etc.)\n- **Transaction Management**: Track income and expenses within budget periods\n- **Real-time Updates**: LiveView provides real-time collaboration without page refreshes\n- **Responsive Design**: Built with Tailwind CSS for mobile-friendly interface\n\n## Getting Started\n\n### Prerequisites\n\nMake sure you have PostgreSQL running. You can use Docker Compose to start a PostgreSQL instance:\n\n```bash\ndocker compose up postgres\n```\n\n### Setup and Run\n\nTo start your Phoenix server:\n\n  * Run `mix setup` to install and setup dependencies\n  * Start Phoenix endpoint with `mix phx.server` or inside IEx with `iex -S mix phx.server`\n\nNow you can visit [`localhost:4000`](http://localhost:4000) from your browser.\n\nReady to run in production? Please [check our deployment guides](https://hexdocs.pm/phoenix/deployment.html).\n\n## Learn more\n\n  * Official website: https://www.phoenixframework.org/\n  * Guides: https://hexdocs.pm/phoenix/overview.html\n  * Docs: https://hexdocs.pm/phoenix\n  * Forum: https://elixirforum.com/c/phoenix-forum\n  * Source: https://github.com/phoenixframework/phoenix\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraulpe7eira%2Fbudget_ex","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fraulpe7eira%2Fbudget_ex","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraulpe7eira%2Fbudget_ex/lists"}