{"id":30066373,"url":"https://github.com/ejfox/cloudinary-backup","last_synced_at":"2025-08-08T07:30:13.833Z","repository":{"id":302888451,"uuid":"1012164758","full_name":"ejfox/cloudinary-backup","owner":"ejfox","description":null,"archived":false,"fork":false,"pushed_at":"2025-07-27T19:29:45.000Z","size":323,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-27T20:57:51.823Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ejfox.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2025-07-01T23:24:06.000Z","updated_at":"2025-07-27T19:29:48.000Z","dependencies_parsed_at":"2025-07-27T20:37:04.067Z","dependency_job_id":null,"html_url":"https://github.com/ejfox/cloudinary-backup","commit_stats":null,"previous_names":["ejfox/cloudinary-backup"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/ejfox/cloudinary-backup","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ejfox%2Fcloudinary-backup","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ejfox%2Fcloudinary-backup/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ejfox%2Fcloudinary-backup/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ejfox%2Fcloudinary-backup/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ejfox","download_url":"https://codeload.github.com/ejfox/cloudinary-backup/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ejfox%2Fcloudinary-backup/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269383911,"owners_count":24408322,"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-08T02:00:09.200Z","response_time":72,"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":[],"created_at":"2025-08-08T07:30:03.783Z","updated_at":"2025-08-08T07:30:13.797Z","avatar_url":"https://github.com/ejfox.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Cloudinary Backup\n\nA desktop application to backup all your photos from Cloudinary with complete metadata preservation and photo management features.\n\n## Features\n\n- **Complete Backup**: Downloads all images from your Cloudinary account\n- **SQLite Database**: Stores all metadata locally for complete independence from Cloudinary\n- **Photography Tools**: Organize by shoots, detect duplicates, preserve EXIF data\n- **Resume Support**: Automatically resumes interrupted downloads  \n- **Progress Tracking**: Real-time progress with file counts and transfer speeds\n- **Easy Folder Access**: \"Open Photos Folder\" button to quickly find your downloads\n- **Cross-Platform**: Automated builds for macOS (ARM64/Intel), Windows, and Linux\n- **User-Friendly**: Step-by-step guidance with clear instructions and emojis\n\n## Quick Start\n\n1. **Get your Cloudinary credentials**:\n   - Go to [console.cloudinary.com](https://console.cloudinary.com) → Account Details\n   - Copy your Cloud Name, API Key, and API Secret (click \"Reveal\" first)\n\n2. **Download the app**:\n   - Visit the [Releases page](https://github.com/ejfox/cloudinary-backup/releases)\n   - Download the file for your platform\n\n3. **Run the backup**:\n   - 🔐 Enter your Cloudinary credentials  \n   - 📁 Pick where to save photos\n   - 🚀 Scan \u0026 download everything\n\n## Installation\n\n### macOS (Apple Silicon)\n- Download `cloudinary-backup_aarch64.app.tar.gz`\n- Extract and drag to Applications folder\n\n### macOS (Intel)  \n- Download `cloudinary-backup_0.2.0_aarch64.dmg`\n- Open DMG and drag to Applications\n\n### Windows\n- Download `cloudinary-backup_0.2.0_x64-setup.exe`\n- Run the installer\n\n### Linux\n- Ubuntu support coming soon (dependency issues being resolved)\n\n## Database Features\n\nThe app creates a comprehensive SQLite database with:\n\n- **Complete metadata** from all Cloudinary photos\n- **Download tracking** and integrity verification\n- **Photography organization** (shoots, collections, EXIF data)\n- **Duplicate detection** based on file size and dimensions\n- **Original filename preservation** \n- **Session tracking** for all backup operations\n\nSee [DATABASE.md](DATABASE.md) for full schema documentation.\n\n## Development\n\nBuilt with:\n- [Tauri](https://tauri.app/) - Rust + TypeScript desktop framework\n- [Vite](https://vitejs.dev/) - Frontend build tool  \n- [SQLite](https://sqlite.org/) + [rusqlite](https://github.com/rusqlite/rusqlite) - Database\n- [GitHub Actions](https://github.com/features/actions) - Automated CI/CD\n\n### Setup\n```bash\nnpm install\nnpm run tauri dev\n```\n\n### Build\n```bash\nnpm run tauri build\n```\n\n### Release\nPush a version tag to trigger automated builds:\n```bash\ngit tag v0.3.0\ngit push origin v0.3.0\n```\n\n## Architecture\n\n- **Frontend**: TypeScript + HTML/CSS with step-by-step UI\n- **Backend**: Rust with Tauri for system integration\n- **Database**: SQLite with comprehensive photo metadata schema\n- **CI/CD**: GitHub Actions with multi-platform builds\n\n## License\n\nMIT License - see LICENSE file for details.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fejfox%2Fcloudinary-backup","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fejfox%2Fcloudinary-backup","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fejfox%2Fcloudinary-backup/lists"}