{"id":29644997,"url":"https://github.com/crane-cloud/cranecloud-cms","last_synced_at":"2025-07-22T01:08:28.042Z","repository":{"id":304973150,"uuid":"1020756872","full_name":"crane-cloud/cranecloud-cms","owner":"crane-cloud","description":"CMS for cranecloud content","archived":false,"fork":false,"pushed_at":"2025-07-16T13:04:56.000Z","size":181,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-07-17T15:16:27.223Z","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/crane-cloud.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-16T10:51:04.000Z","updated_at":"2025-07-16T13:04:57.000Z","dependencies_parsed_at":"2025-07-17T18:31:51.021Z","dependency_job_id":"a846d8f2-dfc1-45b1-998e-4280b545e26c","html_url":"https://github.com/crane-cloud/cranecloud-cms","commit_stats":null,"previous_names":["crane-cloud/cranecloud-cms"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/crane-cloud/cranecloud-cms","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crane-cloud%2Fcranecloud-cms","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crane-cloud%2Fcranecloud-cms/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crane-cloud%2Fcranecloud-cms/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crane-cloud%2Fcranecloud-cms/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/crane-cloud","download_url":"https://codeload.github.com/crane-cloud/cranecloud-cms/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crane-cloud%2Fcranecloud-cms/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266405534,"owners_count":23923566,"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-07-21T11:47:31.412Z","response_time":64,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"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-07-22T01:08:26.077Z","updated_at":"2025-07-22T01:08:28.026Z","avatar_url":"https://github.com/crane-cloud.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CraneCloud CMS\n\nA modern content management system built with Sanity for managing CraneCloud community events and other content.\n\n## 🚀 Features\n\n- **Community Events Management** - Create, edit, and manage community events with rich content\n- **Event Types System** - Flexible categorization system for different types of events\n- **Rich Content Editor** - Full-featured content editor with images and formatting\n- **Image Management** - Hotspot-enabled image cropping and gallery support\n- **SEO Optimized** - Built-in SEO fields and metadata management\n- **Real-time Collaboration** - Multiple users can edit content simultaneously\n\n## 📋 Prerequisites\n\n- Node.js (v18 or higher)\n- Yarn package manager\n- Sanity account (free tier available)\n\n## 🛠️ Installation\n\n1. **Clone the repository**\n\n   ```bash\n   git clone https://github.com/crane-cloud/cranecloud-cms.git\n   cd cranecloud-cms\n   ```\n\n2. **Install dependencies**\n\n   ```bash\n   yarn install\n   ```\n\n3. **Start the development server**\n\n   ```bash\n   yarn dev\n   ```\n\n4. **Open your browser**\n   Navigate to [http://localhost:3333](http://localhost:3333) to access the Sanity Studio.\n\n## 🔧 Available Scripts\n\n- `yarn dev` - Start development server\n- `yarn start` - Start production server\n- `yarn build` - Build for production\n\n## 🌐 API Access\n\nThis CMS provides data through Sanity's APIs:\n\n- **GROQ Query Language** - Powerful query language for data fetching\n- **GraphQL API** - Standard GraphQL interface\n- **Real-time Updates** - Live content updates via WebSocket\n\n### Example GROQ Query\n\n```groq\n*[_type == \"events\" \u0026\u0026 isActive == true] {\n  title,\n  description,\n  date,\n  location,\n  \"eventType\": eventType-\u003ename,\n  \"imageUrl\": image.asset-\u003eurl\n}\n```\n\n## 🏗️ Project Structure\n\n```\ncranecloud-cms/\n├── schemaTypes/          # Content type definitions\n│   ├── Events.ts        # Community events schema\n│   ├── EventType.ts     # Event types schema\n│   └── index.ts         # Schema exports\n├── static/              # Static assets\n├── sanity.config.ts     # Sanity configuration\n├── sanity.cli.ts        # CLI configuration\n└── package.json         # Dependencies and scripts\n```\n\n## 🔒 Environment Variables\n\nCreate a `.env` file in the root directory:\n\n```env\nSANITY_STUDIO_PROJECT_ID=your-project-id\nSANITY_STUDIO_DATASET=production\n```\n\n## 🤝 Contributing\n\n1. Fork the repository\n2. Create a feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n## 📖 Documentation\n\n- [Sanity Documentation](https://www.sanity.io/docs)\n- [GROQ Query Language](https://www.sanity.io/docs/groq)\n- [Schema Types](https://www.sanity.io/docs/schema-types)\n- [Content Studio](https://www.sanity.io/docs/content-studio)\n\n---\n\nBuilt with ❤️ by the CraneCloud team\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcrane-cloud%2Fcranecloud-cms","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcrane-cloud%2Fcranecloud-cms","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcrane-cloud%2Fcranecloud-cms/lists"}