{"id":39281751,"url":"https://github.com/tferreira/piggydime","last_synced_at":"2026-01-18T01:02:59.414Z","repository":{"id":20705298,"uuid":"90621020","full_name":"tferreira/piggydime","owner":"tferreira","description":"Budget management app with recurring transactions and projected balance. (Test user on website: test@test.com Password: piggydime)","archived":false,"fork":false,"pushed_at":"2022-12-10T20:28:50.000Z","size":19400,"stargazers_count":7,"open_issues_count":31,"forks_count":3,"subscribers_count":6,"default_branch":"master","last_synced_at":"2024-04-14T18:03:38.499Z","etag":null,"topics":["account","bank","budget","budgeting","docker","flask","management","material-ui","money","money-manager","python","react","redux"],"latest_commit_sha":null,"homepage":"https://piggy.psyco.fr","language":"JavaScript","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/tferreira.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}},"created_at":"2017-05-08T11:33:48.000Z","updated_at":"2020-12-08T10:42:49.000Z","dependencies_parsed_at":"2023-01-12T01:30:25.934Z","dependency_job_id":null,"html_url":"https://github.com/tferreira/piggydime","commit_stats":null,"previous_names":[],"tags_count":27,"template":false,"template_full_name":null,"purl":"pkg:github/tferreira/piggydime","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tferreira%2Fpiggydime","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tferreira%2Fpiggydime/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tferreira%2Fpiggydime/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tferreira%2Fpiggydime/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tferreira","download_url":"https://codeload.github.com/tferreira/piggydime/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tferreira%2Fpiggydime/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28525445,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-18T00:39:45.795Z","status":"ssl_error","status_checked_at":"2026-01-18T00:39:39.467Z","response_time":85,"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":["account","bank","budget","budgeting","docker","flask","management","material-ui","money","money-manager","python","react","redux"],"created_at":"2026-01-18T01:02:58.575Z","updated_at":"2026-01-18T01:02:59.383Z","avatar_url":"https://github.com/tferreira.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Piggydime #\n\nThis app allows you to keep track of your bank accounts balance.\n\nThis project is still in development but the main features are already implemented. It includes:\n\n * [x] Manage multiple bank accounts\n * [x] Transactions ticking\n * [x] Create monthly and yearly recurring transactions\n * [x] Check your future account balance at a specific date\n * [x] Mini charts preview of debit vs credit by month\n * [x] English and French languages support\n\n Upcoming features:\n\n * [ ] Currency symbols\n * [ ] Statistics charts on home page tiles\n * [ ] Backup/Restore (CSV format)\n\nThis application has been build on top of the [React-Redux-Flask](https://github.com/dternyak/React-Redux-Flask) boilerplate (Flask JWT Blackend and a React/Redux frontend with Material UI).\n\n![screenshot](https://i.imgur.com/5xNSlpO.png)\n\n## How to install\n\n### Install Python libraries\nYou may want to create a virtualenv for this.\nIf you're running this project on OSX, use the following commands:\n```sh\n$ pip3.5 mysql-connector-python-rf==2.2.2 --egg\n$ pip3.5 install -r requirements.txt\n```\nOn unix systems:\n```sh\n$ pip3.5 install -r requirements.txt\n$ pip3.5 uninstall py-bcrypt \u0026\u0026 pip3.5 install py-bcrypt  # this needs to be fixed\n```\n\n### Create DB\n\nYou can choose MySQL or Postgres.\nSQLite has been intentionally omitted as there is issues with Decimal types.\n\nYou'll have to create the database.\n\nMore about connection strings in this [flask config guide.](http://flask-sqlalchemy.pocoo.org/2.1/config/)\n\n```sh\n$ export DATABASE_URL=\"postgresql://username:password@localhost/mydatabase\"\n\nor\n\n$ export DATABASE_URL=\"mysql+mysqlconnector://username:password@localhost/mydatabase\"\n\n$ python3.5 manage.py db upgrade\n```\n\n### Install Front-End Requirements\n```sh\n$ cd static\n$ npm install -g yarn\n$ yarn\n```\n\n### Run Back-End\n\n```sh\n$ python3.5 manage.py runserver\n```\n\n### Build Front-End\n\n```sh\n$ yarn run build:production\n```\n\n### FOR DEVELOPERS -  Prettify\n\nThis project uses the Prettify library in order to have a consistent coding style.\nOptions are the following: `--single-quote --no-semi`\n\nBefore commiting and opening a pull request, please run at the root of the repository:\n\n```sh\n$ make pretty\n```\n\n### FOR DEVELOPERS - Test Back-End\n\n```sh\n$ python3.5 test.py tests/\nwith code coverage:\n$ python3.5 test.py --cov-report=term --cov-report=html --cov=application/ tests/\n```\n\n### FOR DEVELOPERS -  Run Front-End\n\n```sh\n$ cd static\n$ yarn start\n```\n\n### FOR DEVELOPERS - DB Changes (Migration)\n\nTo create new migrations, add your schema on `models.py` then use:\n\n```sh\n$ python3.5 manage.py db revision --autogenerate\n$ python3.5 manage.py db upgrade\n```\n\n## How to install with Docker\n\n### Requirements\n\nIf you wish to install and run Piggydime using Docker, you will need Docker Compose.\nFull documentation is available on [Docker's website](https://docs.docker.com/compose/).\n\n### Running the application\n\nThe latest images of Piggydime are available on the official Docker Hub, so you don't need to build them yourself.\nTo pull these images and run the application, use:\n\n```sh\n$ docker-compose pull\n$ docker-compose up\n```\n\nBy default, the port that will be exposed on your server to access the application from the web will be the port `80`.\nIf you want to use another port, you need to set the `EXTERNAL_PORT` environment variable:\n\n```sh\n$ export EXTERNAL_PORT=8080\n$ docker-compose up\n```\n\n### Backups\n\nYour data is stored on a Docker Volume on the host server.\nOn Linux, you can find the volumes used by the database container on the `/var/lib/docker/volumes` directory.\nMore information about volumes can be found on [Docker's website](https://docs.docker.com/engine/tutorials/dockervolumes/).\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftferreira%2Fpiggydime","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftferreira%2Fpiggydime","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftferreira%2Fpiggydime/lists"}