{"id":22852059,"url":"https://github.com/dporkka/cyber-edu","last_synced_at":"2025-03-31T06:46:21.479Z","repository":{"id":267552940,"uuid":"901608547","full_name":"dporkka/cyber-edu","owner":"dporkka","description":null,"archived":false,"fork":false,"pushed_at":"2025-01-22T07:26:10.000Z","size":575,"stargazers_count":1,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-06T11:35:49.509Z","etag":null,"topics":["courses","cyber-security","cybersecurity","cybersecurity-education","learning-management-system","learning-platform"],"latest_commit_sha":null,"homepage":"https://reliable-melba-d3b184.netlify.app/","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/dporkka.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"custom":["https://buy.stripe.com/28o7sQesAe7BbnicMN","https://cash.app/$DavidPorkka","https://www.paypal.com/donate/?hosted_button_id=KMK2EUCL379LC"]}},"created_at":"2024-12-11T01:29:00.000Z","updated_at":"2024-12-18T00:52:25.000Z","dependencies_parsed_at":"2024-12-11T02:43:39.826Z","dependency_job_id":null,"html_url":"https://github.com/dporkka/cyber-edu","commit_stats":null,"previous_names":["dporkka/cyber-edu"],"tags_count":0,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dporkka%2Fcyber-edu","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dporkka%2Fcyber-edu/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dporkka%2Fcyber-edu/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dporkka%2Fcyber-edu/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dporkka","download_url":"https://codeload.github.com/dporkka/cyber-edu/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246429447,"owners_count":20775806,"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","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":["courses","cyber-security","cybersecurity","cybersecurity-education","learning-management-system","learning-platform"],"created_at":"2024-12-13T06:07:03.876Z","updated_at":"2025-03-31T06:46:21.451Z","avatar_url":"https://github.com/dporkka.png","language":"TypeScript","funding_links":["https://buy.stripe.com/28o7sQesAe7BbnicMN","https://cash.app/$DavidPorkka","https://www.paypal.com/donate/?hosted_button_id=KMK2EUCL379LC"],"categories":[],"sub_categories":[],"readme":"# CyberEdu Platform\n\nA modern cybersecurity education platform template built with:\n\n- [React](https://reactjs.org/)\n- [TypeScript](https://www.typescriptlang.org/)\n- [Tailwind CSS](https://tailwindcss.com/)\n- [Shadcn/ui](https://ui.shadcn.com/)\n- [React Router](https://reactrouter.com/)\n- [Vite](https://vitejs.dev/)\n\n## License\n\nThis template is available under a modified MIT license:\n\n- Free for personal use\n- Commercial use allowed for teams of 2 or fewer\n- Teams larger than 2 require a lifetime license ($90)\n\nPurchase options:\n- [Purchase via Stripe](https://buy.stripe.com/28o7sQesAe7BbnicMN)\n- [Purchase via PayPal](https://www.paypal.com/donate/?hosted_button_id=KMK2EUCL379LC)\n\n## Features\n\n- 🔒 Authentication system\n- 🎨 Modern UI with Shadcn components\n- 📱 Fully responsive design\n- 🚀 Built with performance in mind\n- 🌙 Dark mode support\n- 🔍 SEO optimized\n- 📝 TypeScript for better development experience\n\n## Getting Started\n\n### Prerequisites\n\n- Node.js 18 or later\n- npm or yarn\n- Strapi CMS\n\n### Installation\n\n1. Clone the repository:\n```bash\ngit clone https://github.com/yourusername/cyberedu.git\ncd cyberedu\n```\n\n2. Install dependencies:\n```bash\nnpm install\n```\n\n3. Set up environment variables:\n```bash\ncp .env.example .env\n```\n\n4. Start the development server:\n```bash\nnpm run dev\n```\n\n### Setting up Strapi CMS\n\n1. Install Strapi globally:\n```bash\nnpm install -g @strapi/strapi\n```\n\n2. Create a new Strapi project:\n```bash\nnpx create-strapi-app@latest cms --quickstart\n```\n\n3. Configure content types in Strapi:\n   - Courses\n   - Instructors\n   - Categories\n   - Lessons\n   - Users\n\n4. Set up permissions in Strapi admin panel:\n   - Navigate to Settings \u003e Roles\n   - Configure public and authenticated user permissions\n\n## Project Structure\n\n```\ncyberedu/\n├── src/\n│   ├── components/     # Reusable UI components\n│   ├── hooks/         # Custom React hooks\n│   ├── lib/           # Utility functions\n│   ├── pages/         # Page components\n│   ├── services/      # API services\n│   └── types/         # TypeScript types\n├── public/            # Static assets\n└── cms/              # Strapi CMS\n```\n\n## Development\n\n### Available Scripts\n\n- `npm run dev` - Start development server\n- `npm run build` - Build for production\n- `npm run preview` - Preview production build\n- `npm run lint` - Run ESLint\n- `npm run type-check` - Run TypeScript type checking\n\n### Adding New Courses\n\n1. Log in to Strapi admin panel\n2. Navigate to Content Manager \u003e Courses\n3. Click \"Create new entry\"\n4. Fill in course details\n5. Publish the course\n\n### Environment Variables\n\n```env\nVITE_STRAPI_URL=http://localhost:1337\nVITE_STRIPE_PUBLIC_KEY=your_stripe_public_key\n```\n\n## Deployment\n\n### Frontend (Vite + React)\n\n1. Build the project:\n```bash\nnpm run build\n```\n\n2. Deploy the `dist` folder to your hosting provider\n\n### Strapi CMS\n\n1. Configure production database\n2. Set up environment variables\n3. Deploy Strapi application\n\n## Contributing\n\n1. Fork the repository\n2. Create a feature branch\n3. Commit changes\n4. Push to the branch\n5. Open a pull request\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdporkka%2Fcyber-edu","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdporkka%2Fcyber-edu","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdporkka%2Fcyber-edu/lists"}