{"id":36645489,"url":"https://github.com/bluerobotics/blueplm-ext-google-drive","last_synced_at":"2026-01-15T03:12:58.147Z","repository":{"id":332056950,"uuid":"1130633823","full_name":"bluerobotics/blueplm-ext-google-drive","owner":"bluerobotics","description":"A google drive extension for BluePLM","archived":false,"fork":false,"pushed_at":"2026-01-09T01:32:56.000Z","size":48,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-12T17:22:03.595Z","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":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bluerobotics.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-08T19:33:41.000Z","updated_at":"2026-01-09T01:09:11.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/bluerobotics/blueplm-ext-google-drive","commit_stats":null,"previous_names":["bluerobotics/blueplm-ext-google-drive"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/bluerobotics/blueplm-ext-google-drive","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bluerobotics%2Fblueplm-ext-google-drive","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bluerobotics%2Fblueplm-ext-google-drive/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bluerobotics%2Fblueplm-ext-google-drive/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bluerobotics%2Fblueplm-ext-google-drive/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bluerobotics","download_url":"https://codeload.github.com/bluerobotics/blueplm-ext-google-drive/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bluerobotics%2Fblueplm-ext-google-drive/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28442247,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-15T00:55:22.719Z","status":"online","status_checked_at":"2026-01-15T02:00:08.019Z","response_time":62,"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":"2026-01-12T09:59:44.386Z","updated_at":"2026-01-15T03:12:58.142Z","avatar_url":"https://github.com/bluerobotics.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Google Drive Extension for BluePLM\n\nSync files with Google Drive for backup and collaboration. Browse, edit, and manage your Google Drive files directly within BluePLM.\n\n## Features\n\n- **OAuth 2.0 Authentication** — Securely connect your Google account\n- **File Browser** — Browse and navigate your Google Drive files\n- **Bidirectional Sync** — Keep local and Drive files in sync\n- **Configurable Sync** — Set intervals, direction, and exclusion patterns\n\n## Installation\n\nInstall from the BluePLM Extension Store:\n\n1. Open BluePLM → Settings → Extensions\n2. Search for \"Google Drive\"\n3. Click **Install**\n\n## Configuration\n\nAfter installation, navigate to **Settings → Extensions → Google Drive** to:\n\n1. Connect your Google account\n2. Configure sync interval (1–60 minutes)\n3. Set sync direction (bidirectional, upload-only, download-only)\n4. Add file exclusion patterns\n\n## Development\n\n### Prerequisites\n\n- Node.js 18+\n- npm 9+\n\n### Setup\n\n```bash\nnpm install\n```\n\n### Build\n\n```bash\nnpm run build\n```\n\n### Package\n\nCreates a `.bpx` file for distribution:\n\n```bash\nnpm run package\n```\n\n### Type Check\n\n```bash\nnpm run typecheck\n```\n\n## Releasing\n\nThis extension uses GitHub Actions for automated releases. When you push a tag, it automatically:\n\n1. Runs type checking\n2. Builds the extension\n3. Packages it as a `.bpx` file\n4. Creates a GitHub Release with the package attached\n5. Extracts release notes from `CHANGELOG.md`\n\n### Creating a Release\n\n1. **Update the version** in both `package.json` and `extension.json`:\n\n   ```json\n   \"version\": \"1.0.0\"\n   ```\n\n2. **Update `CHANGELOG.md`** with release notes:\n\n   ```markdown\n   ## [1.0.0] - 2025-01-15\n\n   ### Added\n   - New feature description\n\n   ### Fixed\n   - Bug fix description\n   ```\n\n3. **Commit the changes**:\n\n   ```bash\n   git add .\n   git commit -m \"Release v1.0.0\"\n   ```\n\n4. **Create and push a tag**:\n\n   ```bash\n   git tag v1.0.0\n   git push origin main --tags\n   ```\n\nThe GitHub Action will automatically create a release with the `.bpx` package attached.\n\n### Pre-release Versions\n\nTags containing `-alpha`, `-beta`, or `-rc` are automatically marked as pre-releases:\n\n```bash\ngit tag v1.0.0-beta.1\ngit push origin main --tags\n```\n\n## Project Structure\n\n```\n├── client/           # Client-side code (runs in Extension Host)\n│   ├── index.ts      # Entry point with activate/deactivate\n│   └── components/   # React UI components\n├── server/           # Server-side handlers (runs in API sandbox)\n│   ├── connect.ts    # OAuth initiation\n│   ├── oauth-callback.ts\n│   ├── status.ts     # Connection status\n│   ├── sync.ts       # File synchronization\n│   └── disconnect.ts\n├── types/            # TypeScript type definitions\n├── extension.json    # Extension manifest\n└── package.json\n```\n\n## License\n\nMIT — see [LICENSE](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbluerobotics%2Fblueplm-ext-google-drive","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbluerobotics%2Fblueplm-ext-google-drive","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbluerobotics%2Fblueplm-ext-google-drive/lists"}