{"id":36502143,"url":"https://github.com/gravitek-io/confluence-mirror","last_synced_at":"2026-01-12T02:23:26.759Z","repository":{"id":310933319,"uuid":"1041801835","full_name":"gravitek-io/confluence-mirror","owner":"gravitek-io","description":"Transform your Confluence pages into beautiful React components! This project demonstrates how to seamlessly integrate Confluence content into modern web applications.","archived":false,"fork":false,"pushed_at":"2025-09-13T05:47:39.000Z","size":453,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-14T09:38:28.155Z","etag":null,"topics":["documentation","idp","platform-engineering"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gravitek-io.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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":"NOTICE","maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":["Gravitek-io"]}},"created_at":"2025-08-21T03:17:31.000Z","updated_at":"2025-09-13T05:47:42.000Z","dependencies_parsed_at":null,"dependency_job_id":"4ff25159-4e65-462b-a4ee-2839dc50af88","html_url":"https://github.com/gravitek-io/confluence-mirror","commit_stats":null,"previous_names":["gravitek-io/confluence-mirror"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/gravitek-io/confluence-mirror","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gravitek-io%2Fconfluence-mirror","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gravitek-io%2Fconfluence-mirror/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gravitek-io%2Fconfluence-mirror/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gravitek-io%2Fconfluence-mirror/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gravitek-io","download_url":"https://codeload.github.com/gravitek-io/confluence-mirror/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gravitek-io%2Fconfluence-mirror/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28332159,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-12T00:36:25.062Z","status":"online","status_checked_at":"2026-01-12T02:00:08.677Z","response_time":98,"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":["documentation","idp","platform-engineering"],"created_at":"2026-01-12T02:23:22.546Z","updated_at":"2026-01-12T02:23:26.754Z","avatar_url":"https://github.com/gravitek-io.png","language":"TypeScript","funding_links":["https://github.com/sponsors/Gravitek-io"],"categories":[],"sub_categories":[],"readme":"# Confluence Mirror\n\nTransform your Confluence pages into beautiful React components! This project demonstrates how to seamlessly integrate Confluence content into modern web applications.\n\n![Confluence Mirror](./images/confluence-mirror.png)\n\n\u003e **Disclaimer:** This is an unofficial project, not affiliated with Atlassian.\n\n## 🏗 Project Structure\n\nThis repository contains:\n\n- **packages/core** - `confluence-mirror-core`: Framework-agnostic Confluence API \u0026 ADF processing\n- **demo/** - Complete implementation example with reusable React components\n\n## 🚀 Quick Start\n\n```bash\n# Clone and run the demo\ngit clone https://github.com/Gravitek-io/confluence-mirror\ncd confluence-mirror\nnpm install\nnpm run dev\n```\n\nVisit http://localhost:3000 to see the demo in action.\n\n\u003e **Note**: Before running the demo, configure authentication. See [Authentication Setup](#-authentication) below.\n\n## 🔐 Authentication\n\nThe project supports **two authentication methods** with Atlassian Confluence:\n\n### OAuth2 (Recommended)\n- Uses Atlassian service accounts\n- More secure with short-lived tokens\n- Auto-refreshing authentication\n- Automatic Cloud ID detection\n\n```env\nCONFLUENCE_OAUTH_CLIENT_ID=your_client_id\nCONFLUENCE_OAUTH_CLIENT_SECRET=your_client_secret\n```\n\n### Basic Auth (Legacy)\n- Uses personal Atlassian account\n- Email + API token\n- Simpler setup for development\n\n```env\nCONFLUENCE_BASE_URL=https://your-domain.atlassian.net\nCONFLUENCE_EMAIL=your.email@domain.com\nCONFLUENCE_API_KEY=your_api_token\n```\n\n**Detailed setup instructions**: See [demo/README.md](./demo/README.md#-configuration)\n\n## 🎯 Integration Approaches\n\n### Option 1: Install Package + Copy Components\n\n```bash\n# Install the published core package\nnpm install confluence-mirror-core\n\n# Copy reusable components from demo\ncp -r demo/src/components/confluence/ your-project/src/components/\ncp demo/src/lib/confluence.ts your-project/src/lib/\n```\n\n### Option 2: Fork This Repository\n\nFork this repository and customize the demo app for your needs.\n\n## 📦 Core Package\n\n### confluence-mirror-core\n\nFramework-agnostic core logic for Confluence integration:\n\n- ✅ Confluence REST API client\n- ✅ ADF (Atlas Document Format) processing  \n- ✅ Media URL rewriting\n- ✅ Table of contents extraction\n- ✅ TypeScript types\n\n## 📖 Documentation\n\n- [Core Package Documentation](./packages/core/README.md)\n- [Demo App Setup \u0026 Integration Guide](./demo/README.md)\n\n## 🤝 Contributing\n\nContributions welcome! Please read our contributing guidelines and submit pull requests.\n\n## 📄 License\n\nApache-2.0 © Gravitek\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgravitek-io%2Fconfluence-mirror","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgravitek-io%2Fconfluence-mirror","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgravitek-io%2Fconfluence-mirror/lists"}