{"id":22157472,"url":"https://github.com/yuriytkach/monosync","last_synced_at":"2026-02-10T23:32:12.420Z","repository":{"id":37989482,"uuid":"301221004","full_name":"yuriytkach/monosync","owner":"yuriytkach","description":"Simple application to sync bank statements from Monobank UA","archived":false,"fork":false,"pushed_at":"2025-02-04T01:36:14.000Z","size":431,"stargazers_count":2,"open_issues_count":4,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-26T12:43:26.108Z","etag":null,"topics":["java","monobank","monobank-api","quarkus"],"latest_commit_sha":null,"homepage":"","language":"Java","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/yuriytkach.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,"zenodo":null}},"created_at":"2020-10-04T20:28:41.000Z","updated_at":"2024-10-20T12:25:51.000Z","dependencies_parsed_at":"2023-09-29T03:43:57.809Z","dependency_job_id":"7f0e3736-da2d-4887-a8c2-be6adc391a36","html_url":"https://github.com/yuriytkach/monosync","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/yuriytkach/monosync","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yuriytkach%2Fmonosync","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yuriytkach%2Fmonosync/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yuriytkach%2Fmonosync/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yuriytkach%2Fmonosync/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yuriytkach","download_url":"https://codeload.github.com/yuriytkach/monosync/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yuriytkach%2Fmonosync/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29321353,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-10T20:44:44.282Z","status":"ssl_error","status_checked_at":"2026-02-10T20:44:43.393Z","response_time":65,"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":["java","monobank","monobank-api","quarkus"],"created_at":"2024-12-02T03:09:21.811Z","updated_at":"2026-02-10T23:32:12.412Z","avatar_url":"https://github.com/yuriytkach.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MonoSync\n\n[![CircleCI](https://circleci.com/gh/yuriytkach/monosync/tree/master.svg?style=shield)](https://circleci.com/gh/yuriytkach/monosync/tree/master) [![Codacy Badge](https://app.codacy.com/project/badge/Grade/c36ff84d04734c02878d1bc25165b089)](https://www.codacy.com/gh/yuriytkach/monosync/dashboard?utm_source=github.com\u0026amp;utm_medium=referral\u0026amp;utm_content=yuriytkach/monosync\u0026amp;utm_campaign=Badge_Grade) [![Codacy Badge](https://app.codacy.com/project/badge/Coverage/c36ff84d04734c02878d1bc25165b089)](https://www.codacy.com/gh/yuriytkach/monosync/dashboard?utm_source=github.com\u0026utm_medium=referral\u0026utm_content=yuriytkach/monosync\u0026utm_campaign=Badge_Coverage)\n\nApplication to download bank statements from Monobank UA using its [API](https://api.monobank.ua).\n\nBefore using the app login to https://api.monobank.ua and generate your token!\n\n## Running the application in dev mode\n\nYou can run your application in dev mode that enables live coding using:\n```shell script\n./gradlew quarkusDev\n```\n\n\u003e **_NOTE:_**  Quarkus now ships with a Dev UI, which is available in dev mode only at http://localhost:8080/q/dev/.\n\n## Packaging and running the application\n\nThe application can be packaged using:\n```shell script\n./gradlew build\n```\nIt produces the `quarkus-run.jar` file in the `build/quarkus-app/` directory.\nBe aware that it’s not an _über-jar_ as the dependencies are copied into the `build/quarkus-app/lib/` directory.\n\nThe application is now runnable using `java -jar build/quarkus-app/quarkus-run.jar`.\n\nIf you want to build an _über-jar_, execute the following command:\n```shell script\n./gradlew build -Dquarkus.package.type=uber-jar\n```\n\nThe application, packaged as an _über-jar_, is now runnable using `java -jar build/*-runner.jar`.\n\n## Creating a native executable\n\nYou can create a native executable using:\n```shell script\n./gradlew build -Dquarkus.package.type=native\n```\n\nOr, if you don't have GraalVM installed, you can run the native executable build in a container using:\n```shell script\n./gradlew build -Dquarkus.package.type=native -Dquarkus.native.container-build=true\n```\n\nYou can then execute your native executable with: `./build/cube-redemption-lock-prepare-runner-0.0.1-runner`\n\nIf you want to learn more about building native executables, please consult https://quarkus.io/guides/gradle-tooling.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyuriytkach%2Fmonosync","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyuriytkach%2Fmonosync","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyuriytkach%2Fmonosync/lists"}