{"id":30222738,"url":"https://github.com/ynixt/shared-finances","last_synced_at":"2025-08-14T11:09:40.834Z","repository":{"id":48110454,"uuid":"369952878","full_name":"ynixt/shared-finances","owner":"ynixt","description":"A project written in spring + angular to control personal and group finances","archived":false,"fork":false,"pushed_at":"2025-08-11T06:01:12.000Z","size":5024,"stargazers_count":2,"open_issues_count":2,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-11T07:21:52.382Z","etag":null,"topics":["angular","controle-financeiro","financas","finance-control","kotlin","postgresql","spring","websocket"],"latest_commit_sha":null,"homepage":"https://finances.gabrielsilva.dev","language":"TypeScript","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/ynixt.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":"2021-05-23T03:34:51.000Z","updated_at":"2025-08-10T19:48:58.000Z","dependencies_parsed_at":"2024-03-16T21:25:11.473Z","dependency_job_id":"614d8ef7-aec7-4fee-9e8e-835834b50566","html_url":"https://github.com/ynixt/shared-finances","commit_stats":null,"previous_names":[],"tags_count":21,"template":false,"template_full_name":null,"purl":"pkg:github/ynixt/shared-finances","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ynixt%2Fshared-finances","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ynixt%2Fshared-finances/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ynixt%2Fshared-finances/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ynixt%2Fshared-finances/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ynixt","download_url":"https://codeload.github.com/ynixt/shared-finances/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ynixt%2Fshared-finances/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270407963,"owners_count":24578345,"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","status":"online","status_checked_at":"2025-08-14T02:00:10.309Z","response_time":75,"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":["angular","controle-financeiro","financas","finance-control","kotlin","postgresql","spring","websocket"],"created_at":"2025-08-14T11:09:39.491Z","updated_at":"2025-08-14T11:09:40.746Z","avatar_url":"https://github.com/ynixt.png","language":"TypeScript","readme":"# Shared Finances\n\n⚠️ ⚠️ WARNING: THIS PROJECT IS NOT PRODUCTION READY. THERE ARE A LOT OF BUGS AND IDK WHEN I'LL FIX THEM. ⚠️ ⚠️\n\n\u003e Control your family or individual finances.\n\nThis is an open source project, under [MIT](/LICENSE), to help anyone with finances control.\n\n## Demo\n\nYou can freely use this project on https://finances.gabrielsilva.dev/.\n\n## Technologies\n\n### Backend\n- Kotlin + SpringBoot 3\n- Firebase auth\n\n### Frontend\n- Angular 15 + Angular Material\n- NgRx\n- RxStomp\n\n## Running\n\n### Using docker\n\nTo run the application using Docker, create a `docker-compose.yml` file as shown in the example below. This setup allows you to use a PostgreSQL database hosted in another container or optionally connect to a local PostgreSQL database for testing purposes.\n\n```yaml\nversion: \"3.8\"\n\nservices:\n  postgres:\n    image: postgres:15\n    container_name: shared_finances-postgres\n    restart: unless-stopped\n    environment:\n      POSTGRES_DB: shared_finances\n      POSTGRES_USER: shared_finances\n      POSTGRES_PASSWORD: shared_finances\n    ports:\n      - \"5432:5432\" # Expose the PostgreSQL port for local development (optional)\n    volumes:\n      - postgres_data:/var/lib/postgresql/data # Persist the database between container restarts\n    networks:\n      - shared-finances\n\n  api:\n    container_name: shared_finances-api\n    restart: unless-stopped\n    build:\n      context: ./backend\n      dockerfile: Dockerfile\n    networks:\n      - shared-finances\n    environment:\n      POSTGRES_CONNECTION_STRING: \"postgres:5432\" # Use \"host.docker.internal:5432\" for local testing\n      POSTGRES_DB: shared_finances\n      POSTGRES_USER: shared_finances\n      POSTGRES_PASSWORD: shared_finances\n      GOOGLE_APPLICATION_CREDENTIALS: /home/config/firebase/shared_finances_service-account.json\n      PORT: 8080\n      JOB_TIMEZONE: America/Sao_Paulo\n    volumes:\n      - /home/config/firebase:/home/config/firebase\n    depends_on:\n      - postgres # Remove this line if connecting to a local PostgreSQL server\n\n  nginx:\n    container_name: shared_finances-nginx\n    restart: unless-stopped\n    build:\n      context: ./frontend\n      dockerfile: Dockerfile\n      args:\n        - NG_APP_SERVER_URL=finances.gabrielsilva.dev\n        - NG_APP_USE_SSL=true\n    networks:\n      - shared-finances\n    depends_on:\n      - api\n    ports:\n      - \"8080:80\"\n    command: \"/bin/sh -c 'while :; do sleep 6h \u0026 wait $${!}; nginx -s reload; done \u0026 nginx -g \\\"daemon off;\\\"'\"\n\nnetworks:\n  shared-finances:\n\nvolumes:\n  postgres_data:\n```\n\nTo run the containers in detached mode, execute:\n\n`docker compose up -d`\n\nNote: If you opt to use a local PostgreSQL instance, ensure it is already running and accessible on the default port (5432) before starting the application containers.\n\n### Standalone\n- [Running backend](/backend/README.md).\n- [Running frontend](/backend/README.md).\n\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fynixt%2Fshared-finances","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fynixt%2Fshared-finances","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fynixt%2Fshared-finances/lists"}