{"id":25942133,"url":"https://github.com/dotpipe/cloudsync","last_synced_at":"2026-02-12T08:34:59.840Z","repository":{"id":279532659,"uuid":"939122992","full_name":"dotpipe/cloudsync","owner":"dotpipe","description":null,"archived":false,"fork":false,"pushed_at":"2025-02-27T02:50:40.000Z","size":42,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-11T11:43:19.663Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/dotpipe.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-02-26T03:00:55.000Z","updated_at":"2025-09-17T17:33:44.000Z","dependencies_parsed_at":"2025-02-26T04:19:14.819Z","dependency_job_id":"fd3564ae-eeda-4c1b-8620-078428f837d5","html_url":"https://github.com/dotpipe/cloudsync","commit_stats":null,"previous_names":["dotpipe/cloudsync","davidpulse1/cloudsync"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dotpipe/cloudsync","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotpipe%2Fcloudsync","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotpipe%2Fcloudsync/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotpipe%2Fcloudsync/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotpipe%2Fcloudsync/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dotpipe","download_url":"https://codeload.github.com/dotpipe/cloudsync/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotpipe%2Fcloudsync/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29361819,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-12T01:03:07.613Z","status":"online","status_checked_at":"2026-02-12T02:00:06.911Z","response_time":55,"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-03-04T06:17:26.592Z","updated_at":"2026-02-12T08:34:59.815Z","avatar_url":"https://github.com/dotpipe.png","language":"JavaScript","readme":"# Modala \u0026 dotPipe.js Cloud Deployment  \n\n## Overview  \nThis project automates the deployment of structured HTML, JSON, and dependency files to cloud-based server services. Using \\`dotPipe.js\\`, it converts modala-based UI elements into JSON, structures dependencies, and ensures a clean and dynamic web deployment system.  \n\n## Features  \n- **HTML-to-JSON Conversion**: Converts HTML structures into uniquely formatted JSON files with enforced IDs and parent-child relationships.  \n- **Cloud Deployment**: Automates file uploads to server services such as AWS, Firebase, or DigitalOcean.  \n- **Dependency Management**: Establishes connections between elements and their required resources.  \n- **Class \u0026 Style Mapping**: Extracts styles into external CSS files while maintaining proper class structures in JSON.  \n- **Live Template Editing**: Allows users to modify and save UI components dynamically.  \n\n## File Structure  \n\\`\\`\\`\n/project-root\n│── index.html          # Main interface  \n│── script.js           # Handles HTML-to-JSON conversion \u0026 deployments  \n│── dotPipe.js          # Manages structure and dependencies  \n│── styles.css          # Stores extracted styles  \n│── dependencies.json   # Tracks component relationships  \n│── modala-templates/   # Saved modala template structures  \n│── cloud-config.json   # Configuration for cloud services  \n│── deploy.js           # Automates cloud uploads  \n│── README.md           # Project documentation  \n\\`\\`\\`  \n\n## JSON Structure  \n- Each object’s **first key** is a **unique identifier** (usually the element’s ID).  \n- **Tag names are properties**, not object keys.  \n- **Attributes** such as \\`id\\`, \\`class\\`, and \\`textContent\\` are stored directly.  \n- **Nested elements** are stored as objects with meaningful key names.  \n\n### Example JSON Output  \n\\`\\`\\`json\n{\n  \"modal-example\": {\n    \"id\": \"modal-example\",\n    \"tagname\": \"div\",\n    \"class\": \"new-class-name existing-class\",\n    \"p-content\": {\n      \"id\": \"p-1\",\n      \"tagname\": \"p\",\n      \"textContent\": \"This is a modal\",\n      \"class\": \"modal-text\",\n      \"style\": \"color: red;\"\n    },\n    \"close-button\": {\n      \"id\": \"btn-close\",\n      \"tagname\": \"button\",\n      \"textContent\": \"Close\",\n      \"class\": \"close-button\"\n    }\n  }\n}\n\\`\\`\\`\n\n## Deployment Process  \n1. **Configure Cloud Settings**  \n   - Edit \\`cloud-config.json\\` to specify cloud service credentials and endpoints.  \n\n2. **Prepare Files**  \n   - Run \\`script.js\\` to convert modala HTML structures into JSON and CSS.  \n\n3. **Deploy to Cloud**  \n   - Run \\`deploy.js\\` to upload structured files to the cloud.  \n   - Supports AWS S3, GoDaddy Hosting, and BlueHost Spaces.  \n\n### Example `cloud-config.json`  \n\\`\\`\\`json\n{\n  \"service\": \"aws\",\n  \"bucket\": \"my-cloud-storage\",\n  \"region\": \"us-west-2\",\n  \"accessKeyId\": \"YOUR_ACCESS_KEY\",\n  \"secretAccessKey\": \"YOUR_SECRET_KEY\"\n}\n\\`\\`\\`\n\n## Future Improvements  \n- Implement UI-based cloud service selection.  \n- Enhance deployment logs \u0026 error handling.  \n- Support real-time sync with cloud storage.  \n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdotpipe%2Fcloudsync","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdotpipe%2Fcloudsync","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdotpipe%2Fcloudsync/lists"}