{"id":13556906,"url":"https://github.com/sbine/bdgt","last_synced_at":"2026-01-11T00:46:01.790Z","repository":{"id":27302663,"uuid":"30776652","full_name":"sbine/bdgt","owner":"sbine","description":"Big finance tools in a small package","archived":false,"fork":false,"pushed_at":"2024-09-25T02:54:21.000Z","size":7153,"stargazers_count":188,"open_issues_count":0,"forks_count":58,"subscribers_count":19,"default_branch":"main","last_synced_at":"2024-11-04T06:35:24.831Z","etag":null,"topics":["budgeting","docker","finance","hacktoberfest","laravel","money","php","vue"],"latest_commit_sha":null,"homepage":"https://bdgt.it","language":"PHP","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/sbine.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-02-13T21:20:53.000Z","updated_at":"2024-10-24T11:54:47.000Z","dependencies_parsed_at":"2023-01-14T06:26:03.047Z","dependency_job_id":null,"html_url":"https://github.com/sbine/bdgt","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sbine%2Fbdgt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sbine%2Fbdgt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sbine%2Fbdgt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sbine%2Fbdgt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sbine","download_url":"https://codeload.github.com/sbine/bdgt/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246984647,"owners_count":20864484,"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":["budgeting","docker","finance","hacktoberfest","laravel","money","php","vue"],"created_at":"2024-08-01T12:04:04.689Z","updated_at":"2026-01-11T00:46:01.491Z","avatar_url":"https://github.com/sbine.png","language":"PHP","readme":"bdgt\n====\n\n![build status](https://img.shields.io/github/actions/workflow/status/sbine/bdgt/tests.yml?branch=main)\n\n## Big finance tools in a small package\n\nbdgt is a one-stop personal finance management app. Planned features:  \n\n- Zero-based budgeting system\n- Bill management, calendar, and reminders\n- Account management/transaction history\n- Goal system with automatic monthly budgeting\n- Forecasting (net worth/account balance)\n- Debt and savings calculators\n- Interactive reports\n\n\u003e **Demo at [https://bdgt.it](https://bdgt.it)**  \n\u003e `admin@example.com` / `admin`\n\n## Index\n\n- [Screenshots](#screenshots)\n- [Installation](#installation)\n  - [Using PHP on your machine](#using-php-on-your-machine)\n  - [Using Docker (Laravel Sail)](#using-docker-laravel-sail)\n- [Building the frontend assets](#building-the-frontend-assets)\n\n## Screenshots\n\n![screenshot: bills page](https://sarabine.com/bdgt-bills.png)\n\n![screenshot: goals page](https://sarabine.com/bdgt-goals.png)\n\n![screenshot: reports](https://sarabine.com/bdgt-reports.png)\n\n## Installation\n\n### Using PHP on your machine\n\nThis project requires PHP 7.4+, a MySQL database, [Composer](https://getcomposer.org/), and [NPM](https://www.npmjs.com/).\n\nIf you already have PHP installed, you can use `php artisan serve` or [Laravel Valet](https://laravel.com/docs/valet) paired with an installed version of MySQL, or a tool like [Takeout](https://github.com/tighten/takeout).\n\n\u003cdetails\u003e\n\u003csummary\u003eClick to expand local setup instructions\u003c/summary\u003e\n\nRun these commands to install dependencies and configure the app:\n\n```bash\ncp .env.example .env # edit the values in .env to suit your environment\ncomposer install\nphp artisan key:generate\nphp artisan migrate\nphp artisan db:seed\nnpm install\nnpm run dev\n```\n\nA dummy account will be created with the following credentials which can be used to log in and preview the app:  \nEmail: admin@example.com  \nPassword: admin\n\u003c/details\u003e\n\n### Using Docker (Laravel Sail)\n\nA Docker config is provided with all required dependencies using [Laravel Sail](https://laravel.com/docs/sail).\n\n\u003cdetails\u003e\n\u003csummary\u003eClick to expand Docker instructions\u003c/summary\u003e\n\n1. Copy the .env file and edit the values to suit your environment:\n\n   ```bash\n   cp .env.example .env\n   ```\n2. If you have Composer installed, run `composer install` to install Laravel Sail. Otherwise, install using the following Docker command (see [the docs](https://laravel.com/docs/8.x/sail#installing-composer-dependencies-for-existing-projects)):\n   ```bash\n   docker run --rm \\\n       -v $(pwd):/opt \\\n       -w /opt \\\n       laravelsail/php80-composer:latest \\\n       composer install\n   ```\n\n3. Start the containers:\n\n   ```bash\n   # Add -d to run in the background\n   ./vendor/bin/sail up\n   ```\n\n4. Configure the app and build the frontend:\n\n   ```bash\n   ./vendor/bin/sail artisan key:generate\n   ./vendor/bin/sail artisan migrate\n   ./vendor/bin/sail artisan db:seed\n   ./vendor/bin/sail npm install\n   ./vendor/bin/sail npm run dev\n   ```\n\nThe app will be available on http://localhost:[APP_PORT], depending on the `APP_PORT` you specified in your .env file (`80` by default).\n\nA dummy account will be created with the following credentials which can be used to log in and preview the app:  \nEmail: admin@example.com  \nPassword: admin\n\u003c/details\u003e\n\n## Building the frontend assets\nIf you make changes to JS or SCSS files, you'll need to recompile the frontend assets.\n\n`npm run watch` — to automatically compile changes  \n","funding_links":[],"categories":["PHP","finance"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsbine%2Fbdgt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsbine%2Fbdgt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsbine%2Fbdgt/lists"}