Question regarding project status #149
-
|
Hey @rhoopr 👋 Thanks for creating this - it's just what I was looking for 😁 Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 8 replies
-
|
@LarsFronius thanks for checking it out! I do use it for my personal library -- I built it for myself, originally, "for fun", when icloudpd announced they're looking for a maintainer. The core sync functionality is locked in, the rest is mostly small feature additions. You can just tell it "go sync" and it'll fetch the whole thing no issues. Roadmap is expanding to include some interesting stuff like immich integration and some other expansions beyond just "icloud downloader", but that core use case will always be available. |
Beta Was this translation helpful? Give feedback.
-
|
Thanks, that's good to know! |
Beta Was this translation helpful? Give feedback.
-
|
@LarsFronius my working assumption is that it's part of the patch in icloudpd #1327 - I'm adding a small hotfix to ensure we manually Trigger a Push Notification during 2FA. Grab the new version when it's up (an hour or two) and give it another try! |
Beta Was this translation helpful? Give feedback.
-
|
Hey! v0.6.0 is coming soon with a big focus on credential management, auth hardening, and general stability/robustness work. Recommended setup: Start the container with only your username, then store the password in the encrypted credential store: environment:
- ICLOUD_USERNAME=you@example.com# One-time setup after first start:
docker exec -it kei kei credential set --username you@example.comThis will save your password AES-256-GCM encrypted in the 2FA will work the same way — when a code is needed the container pauses (no restart loops) and you submit it externally: docker exec -it kei kei submit-code 123456Tip: set up a If you'd rather not use the credential store, there will be two other env-free options:
I'll update the Docker and Credentials wiki pages with the full walkthrough once it ships. |
Beta Was this translation helpful? Give feedback.
Hey! v0.6.0 is coming soon with a big focus on credential management, auth hardening, and general stability/robustness work.
Recommended setup: Start the container with only your username, then store the password in the encrypted credential store:
This will save your password AES-256-GCM encrypted in the
/configvolume. Future starts read it automatically — no env var needed.2FA will work the same way — when a code is needed the container pauses (no restart loops) and you submit it externally:
docker exec -it kei kei submit-code 123456Tip…