{"id":26382950,"url":"https://github.com/minikin/books-swiftui","last_synced_at":"2026-05-09T06:02:30.000Z","repository":{"id":91669926,"uuid":"222898603","full_name":"minikin/books-swiftui","owner":"minikin","description":" 📚Books is iOS/iPadOS/macOS app which helps to manage your favorite books.","archived":false,"fork":false,"pushed_at":"2019-11-20T14:23:46.000Z","size":25,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"develop","last_synced_at":"2025-10-10T14:27:29.278Z","etag":null,"topics":["ios","ipados","macos","swift","swiftui"],"latest_commit_sha":null,"homepage":"","language":"Swift","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/minikin.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2019-11-20T09:22:09.000Z","updated_at":"2024-04-17T11:11:01.000Z","dependencies_parsed_at":null,"dependency_job_id":"da967726-ffdf-4520-aa77-6cb539e87faf","html_url":"https://github.com/minikin/books-swiftui","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/minikin/books-swiftui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minikin%2Fbooks-swiftui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minikin%2Fbooks-swiftui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minikin%2Fbooks-swiftui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minikin%2Fbooks-swiftui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/minikin","download_url":"https://codeload.github.com/minikin/books-swiftui/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minikin%2Fbooks-swiftui/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32809147,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"online","status_checked_at":"2026-05-09T02:00:06.633Z","response_time":123,"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":["ios","ipados","macos","swift","swiftui"],"created_at":"2025-03-17T06:19:32.804Z","updated_at":"2026-05-09T06:02:29.995Z","avatar_url":"https://github.com/minikin.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Books\n\nBooks is iOS/iPadOS/macOS app which helps to  manage your favorite books.\n\n\u003ca href=\"https://twitter.com/minikin\"\u003e\u003cimg src=\"https://i.ibb.co/0B5TgD9/wip.png\" alt=\"map\" border=\"0\"\u003e\u003c/a\u003e\n\n## Meta\n\n**State:** development\n\n**Point People:** [Sasha Prokhorenko](mailto:djminikin@gmail.com)\n\n**CI:** [![Build Status](https://app.bitrise.io/app/0ed3e2e48e0d9e8b/status.svg?token=d54LNFUhSdRINlIFoi9jXQ)](https://app.bitrise.io/app/0ed3e2e48e0d9e8b)\n\n---\n\n- [Books](#books)\n  - [Meta](#meta)\n  - [Requirements](#requirements)\n  - [Dependencies](#dependencies)\n  - [Installation](#installation)\n  - [Running the project](#running-the-project)\n  - [Development](#development)\n    - [Project Structure](#project-structure)\n  - [Run Tests](#run-tests)\n  - [Warnings](#warnings)\n\n## Requirements\n\n- iOS 13.0+ / macOS 10.14.5+\n- Xcode 11.0+\n- Swift 5.1+\n\n## Dependencies\n\nIn the project I don't use any third party dependencies.\n\n---\n\n## Installation\n\n```sh\ngit clone https://github.com/minikin/books-swiftui.git \u0026\u0026 cd books-swiftui \u0026\u0026 xed .\n```\n\n---\n\n## Running the project\n\nTo run the app from Xcode, open the file `Books.xcodeproj` and run the Scheme `Books`.\nRunning from Xcode always launches the app with the build configuration `Debug`.\n\n---\n\n## Development\n\n### Project Structure\n\nIn the project folder, there are a few important files:\n\n- `Books.xcodeproj`: This is the main Xcode workspace file. To open the project with Xcode, always use this file instead of the project file.\n\nInside the Xcode project, there are a few separations:\n\n- [`SwiftComposable`](https://github.com/minikin/SwiftComposable) Swift Package\n  - Contains foundation sources that are used in multiple components of the app, like a Networking client.\n- `Books` app target\n  - The app target uses `SwiftComposable`\n  - Inside of the app target, code is separated further with groups\n    - There is a group `Application` with general app parts used by multiple features, like actions, reducers\n    - For each feature (AllItems, ItemDetails, ...) there is an additional group that contains everything that is only necessary for this feature.\n\n---\n\n## Run Tests\n\nThe Books project contains one unit test target: `BooksTests`.\n\n- To run all tests from Xcode, select the Scheme `Books` and press _CMD_ + _U_ or select test from Xcode's dropdown.\n\n---\n\n## Warnings\n\nPlease, keep in mind that SwiftUI is still in an early stage.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fminikin%2Fbooks-swiftui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fminikin%2Fbooks-swiftui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fminikin%2Fbooks-swiftui/lists"}