{"id":29184334,"url":"https://github.com/rohit1901/nimbus-tech-strapi","last_synced_at":"2026-04-30T03:33:10.999Z","repository":{"id":301574678,"uuid":"1000840165","full_name":"rohit1901/nimbus-tech-strapi","owner":"rohit1901","description":"A CMS for the Nimbus Tech Website #showcase","archived":false,"fork":false,"pushed_at":"2025-11-08T15:26:17.000Z","size":10262,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-11-08T17:24:32.973Z","etag":null,"topics":["cms","javascript","nimbus-tech","strapi","strapi-cms","typescript"],"latest_commit_sha":null,"homepage":"","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/rohit1901.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-06-12T12:00:58.000Z","updated_at":"2025-11-08T15:26:21.000Z","dependencies_parsed_at":"2025-06-27T16:02:38.808Z","dependency_job_id":null,"html_url":"https://github.com/rohit1901/nimbus-tech-strapi","commit_stats":null,"previous_names":["rohit1901/nimbus-tech-strapi"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rohit1901/nimbus-tech-strapi","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rohit1901%2Fnimbus-tech-strapi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rohit1901%2Fnimbus-tech-strapi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rohit1901%2Fnimbus-tech-strapi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rohit1901%2Fnimbus-tech-strapi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rohit1901","download_url":"https://codeload.github.com/rohit1901/nimbus-tech-strapi/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rohit1901%2Fnimbus-tech-strapi/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32453755,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T22:27:22.272Z","status":"online","status_checked_at":"2026-04-30T02:00:05.929Z","response_time":57,"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":["cms","javascript","nimbus-tech","strapi","strapi-cms","typescript"],"created_at":"2025-07-01T21:30:56.383Z","updated_at":"2026-04-30T03:33:05.992Z","avatar_url":"https://github.com/rohit1901.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Nimbus Tech CMS\n\nA modern Headless CMS for [nimbus-tech.de](https://nimbus-tech.de), built with [Strapi](https://strapi.io/) and deployed on [Heroku](https://heroku.com).  \nEasily manage your business website content with an intuitive admin panel and robust API.\n\n---\n\n## Table of Contents\n\n- [Features](#features)\n- [Getting Started](#getting-started)\n- [Local Development](#local-development)\n- [Deployment (Heroku)](#deployment-heroku)\n- [Content Management](#content-management)\n- [API Usage](#api-usage)\n- [Security \u0026 Permissions](#security--permissions)\n- [License](#license)\n\n---\n\n## Features\n\n- 🚀 **Headless CMS**: Manage content for your business website with a user-friendly interface.\n- 🌐 **RESTful \u0026 GraphQL APIs**: Flexible content delivery for any frontend.\n- ☁️ **Heroku Deployment**: Scalable cloud hosting.\n- 🔒 **Role-based Permissions**: Control access to your content.\n- 🖼️ **Media Library**: Upload and organize images and files.\n- 🛠️ **Custom Content Types**: Tailor the CMS to your business needs.\n\n---\n\n## Getting Started\n\n### Prerequisites\n\n- [Node.js](https://nodejs.org/) (v16.x recommended)\n- [npm](https://www.npmjs.com/) or [yarn](https://yarnpkg.com/)\n- [Heroku CLI](https://devcenter.heroku.com/articles/heroku-cli) (for deployment)\n- [Git](https://git-scm.com/)\n\n---\n\n## Local Development\n\n1. **Clone the repository**  \n   ```bash\n   git clone https://github.com/your-org/nimbus-tech-cms.git\n   cd nimbus-tech-cms\n   ```\n\n2. **Install dependencies**  \n   ```bash\n   npm install\n   # or\n   yarn install\n   ```\n\n3. **Start Strapi in development mode**  \n   ```bash\n   npm run develop\n   # or\n   yarn develop\n   ```\n   Visit [http://localhost:1337/admin](http://localhost:1337/admin) to set up your admin account.\n\n---\n\n## Deployment (Heroku)\n\n1. **Create a Heroku app**  \n   ```bash\n   heroku login\n   heroku create nimbus-tech-cms\n   ```\n\n2. **Set environment variables** (in Heroku dashboard or CLI):  \n   - `APP_KEYS`, `API_TOKEN_SALT`, `ADMIN_JWT_SECRET`, `JWT_SECRET`, etc.\n   - Database credentials (Postgres is recommended for production)\n\n3. **Deploy to Heroku**  \n   ```bash\n   git push heroku main\n   ```\n\n4. **Open your deployed app**  \n   ```bash\n   heroku open\n   ```\n\nFor detailed steps, see [Strapi’s Heroku deployment guide][5][4].\n\n---\n\n## Content Management\n\n- **Login to the Strapi Admin Panel**:  \n  Visit `/admin` on your deployed instance (e.g., `https://nimbus-tech-cms.herokuapp.com/admin`).\n- **Create and Manage Content Types**:  \n  Use the Content-Type Builder to define your business data models.\n- **Add/Edit Content**:  \n  Use the Content Manager to create, update, and publish entries.\n- **Media Library**:  \n  Upload and manage images and documents.\n\n---\n\n## API Usage\n\n- **REST API**:  \n  Access your content at `/api/[collection]` (e.g., `/api/articles`).\n- **GraphQL API** (if enabled):  \n  Access at `/graphql`.\n\nExample:\n```http\nGET https://nimbus-tech-cms.herokuapp.com/api/articles\n```\n\n- **Populate media and relations** using the `populate` parameter.\n\n---\n\n## Security \u0026 Permissions\n\n- **Set Public API Permissions**:  \n  Go to `Settings \u003e Users \u0026 Permissions \u003e Roles \u003e Public` and enable `find` and `findOne` for content types you want public[1][2].\n- **Use Environment Variables**:  \n  Store secrets and API keys securely in Heroku config vars[4][5].\n\n---\n\n## License\n\nThis project is licensed under the MIT License.\n\n---\n\n\u003e For support or questions, contact [info@nimbus-tech.de](mailto:info@nimbus-tech.de).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frohit1901%2Fnimbus-tech-strapi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frohit1901%2Fnimbus-tech-strapi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frohit1901%2Fnimbus-tech-strapi/lists"}