{"id":28204159,"url":"https://github.com/alysnnix/finch","last_synced_at":"2026-04-12T18:37:19.151Z","repository":{"id":249721559,"uuid":"832339924","full_name":"alysnnix/finch","owner":"alysnnix","description":"Organize your accounts, track your spending, create budgets and achieve your financial goals more easily than ever.","archived":false,"fork":false,"pushed_at":"2024-09-28T02:14:41.000Z","size":2155,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"dev","last_synced_at":"2025-06-13T06:58:06.496Z","etag":null,"topics":["docker","finance","finch","nestjs","postgresql"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/alysnnix.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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}},"created_at":"2024-07-22T20:27:42.000Z","updated_at":"2024-09-28T02:14:44.000Z","dependencies_parsed_at":"2025-04-03T01:32:24.605Z","dependency_job_id":null,"html_url":"https://github.com/alysnnix/finch","commit_stats":null,"previous_names":["4lysson-a/finch","alysnnix/finch"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/alysnnix/finch","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alysnnix%2Ffinch","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alysnnix%2Ffinch/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alysnnix%2Ffinch/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alysnnix%2Ffinch/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alysnnix","download_url":"https://codeload.github.com/alysnnix/finch/tar.gz/refs/heads/dev","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alysnnix%2Ffinch/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259759734,"owners_count":22907028,"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":["docker","finance","finch","nestjs","postgresql"],"created_at":"2025-05-17T04:12:46.570Z","updated_at":"2026-04-12T18:37:19.139Z","avatar_url":"https://github.com/alysnnix.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003e [!WARNING]  \n\u003e 👷 Work in progress 👷\n\n---\n\n\u003cdiv align=\"center\"\u003e\n  \u003ch1\u003eFinch - Personal finance control\u003c/h1\u003e\n\n![finch-logo-animation](/assets/finch-logo-animation-ping-pong.gif)\n\n\u003c/div\u003e\n\n## Tech stack\n\n\u003c/br\u003e\n\n\u003cdiv align=\"center\"\u003e\n  \u003cimg src=\"https://skillicons.dev/icons?i=html,css,javascript,typescript,docker,git,prisma,nodejs,nestjs,react,vite,tailwindcss\" width=\"415px\" alt=\"Technologies\" /\u003e\n\u003c/div\u003e\n\n\u003c/br\u003e\n\n- [**Backend:**](./backend/README.md) \n  - [`Docker`](https://www.docker.com/) \n  - [`Nest.js`](https://nestjs.com/) \n  - [`Prisma ORM`](https://www.prisma.io/) \n  - `PostgreSQL` \n\n- **Frontend:**\n  - [`React`](https://react.dev/) \n  - [`Radix Ui`](https://www.radix-ui.com/)\n  - [`React Query`](https://tanstack.com/) \n  - [`Tailwind CSS`](https://tailwindcss.com/) \n\n\n## Running locally\n\n### Database\n1. To setup the database, make sure you have built the container and that it has uploaded both the database and the backend:\n    \n    1.1 Follow steps 1 and 2 from the `backend` section.\n\n2. If you structuring the database for the first time follow the steps below:\n    \n    - 2.1. Enter inside the backend container:\n      ```bash\n        docker compose exec -it finch-backend bash\n      ```\n\n    - 2.2. Run the following command to create the database schema:\n      ```bash\n        npx prisma migrate dev\n      ```\n\n    - 2.3. Check if the database was structured correctly:\n    \n        - 2.3.1. Run the following command to enter the database:\n        \n            ```bash\n              docker exec -it finch-db bash\n            ```\n\n        - 2.3.2. Run the following command login in `psql`:\n        \n            ```bash\n              psql -U root\n            ```\n\n        - 2.3.3. Run the following command to list the databases, you should see the `finch` database:\n\n            ```bash\n              \\l\n            ```\n\n        - 2.3.4. Run the following command to list the tables, you should see all tables created by Prisma:\n\n            ```bash\n              \\c finch\n              \\dt\n            ```\n          if you see the tables, the database was structured correctly :\u003e\n\n### Backend\n1. Create a `.env` file in the `backend` directory follow the `.env.example` file as a template.:\n\n2. Run the following command to install the dependencies:\n```bash\ndocker compose run --rm backend-deps\n```\n\n3. Run the following command to start the backend:\n    - 3.1. If you run the backend for the first time, run the following command:\n\n      ```bash\n      docker compose up --build\n      ```\n\n    - 3.2. If you have already run the backend before, run the following command:\n\n      ```bash\n      docker compose up finch-backend finch-db\n      ```\n\n### Frontend\nTo run the frontend, follow the instructions below its similar to the backend:\n\n1. Run the following command to install the dependencies:\n```bash\ndocker compose run --rm frontend-deps\n```\n\n3. Run the following command to start the container:\n    - 3.1. If you run the backend for the first time, run the following command:\n\n      ```bash\n      docker compose up --build\n      ```\n\n    - 3.2. If you have already run the backend before, run the following command:\n\n      ```bash\n      docker compose up finch-frontend\n      ```\n\n## Branding\n\n![finch-banner](/assets/finch-banner.png)\n\n😒 Tired of your finances being in ~~disorder~~?\n\n⛓️‍💥 No more complicated spreadsheets and confusing apps!\n\n🤩 With **Finch**, you have one hassle-free place for all your finances.\n\nOrganize your accounts, track your spending, create budgets and achieve your financial goals more easily than ever.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falysnnix%2Ffinch","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falysnnix%2Ffinch","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falysnnix%2Ffinch/lists"}