{"id":25585766,"url":"https://github.com/ompharate/creator-academy","last_synced_at":"2025-04-12T20:30:51.542Z","repository":{"id":247051159,"uuid":"824891719","full_name":"ompharate/creator-academy","owner":"ompharate","description":"Creator Academy is a platform that enables creators to create and manage courses easily. This open-source project is designed to help creators share their knowledge with the world.","archived":false,"fork":false,"pushed_at":"2024-07-21T14:18:03.000Z","size":1282,"stargazers_count":4,"open_issues_count":7,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-26T14:50:15.977Z","etag":null,"topics":["clerk","mongodb","nextjs","prisma","shadcn-ui","typescript","uploadthing","zod"],"latest_commit_sha":null,"homepage":"https://creatoracademy.vercel.app","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/ompharate.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"MIT-LICENSE.txt","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}},"created_at":"2024-07-06T08:32:14.000Z","updated_at":"2024-11-08T12:43:36.000Z","dependencies_parsed_at":"2024-07-21T14:21:46.181Z","dependency_job_id":null,"html_url":"https://github.com/ompharate/creator-academy","commit_stats":null,"previous_names":["ompharate/creator-academy"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ompharate%2Fcreator-academy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ompharate%2Fcreator-academy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ompharate%2Fcreator-academy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ompharate%2Fcreator-academy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ompharate","download_url":"https://codeload.github.com/ompharate/creator-academy/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248629267,"owners_count":21136227,"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":["clerk","mongodb","nextjs","prisma","shadcn-ui","typescript","uploadthing","zod"],"created_at":"2025-02-21T07:19:35.272Z","updated_at":"2025-04-12T20:30:51.508Z","avatar_url":"https://github.com/ompharate.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🎓 Creator Academy\n\n\u003ca href=\"https://imgbb.com/\"\u003e\u003cimg src=\"https://i.ibb.co/cDDN8T9/logo-only.png\" alt=\"logo-only\" border=\"0\" width=\"200\" height=\"200\"\u003e\u003c/a\u003e\n\nCreator Academy is a platform that enables creators to create and manage courses easily. This open-source project is designed to help creators share their knowledge with the world.\n\n[Watch Demo Video ](https://utfs.io/f/69eb4ca4-8f6d-4b7c-b1b8-fa08f88b32db-f1lhsm.mp4)\n\n## 📋 Table of Contents\n\n- [Features](#-features)\n- [Tech Stack](#-tech-stack)\n- [Getting Started](#getting-started)\n- [Installation](#installation)\n- [Contributing](#contributing)\n- [License](#license)\n- [Contact](#contact)\n\n## ✨ Features\n\n- 🛡️ User Authentication with Clerk\n- 📝 Course Creation and Management\n- 🎨 Theme Selection for Course Pages\n- 💳 Payment Integration with Stripe\n- 📱 Responsive Design\n- ☁️ Image and Video Management with Cloudinary\n- 📤 File Uploading with UploadThing\n\n## 🛠️ Tech Stack\n\n- **Frontend:** Next.js, ShadCN, Tailwind CSS\n- **Backend:** Next.js, Prisma\n- **Database:** MongoDB (via MongoDB Atlas)\n- **Validation:** Zod\n- **User Authentication:** Clerk\n- **Payment Gateway:** Stripe\n- **File Uploading:** UploadThing\n- **Language:** TypeScript\n\n## 🚀 Getting Started\n\nTo get a local copy up and running, follow these simple steps.\n\n### 📦 Prerequisites\n\nMake sure you have the following installed:\n\n- Node.js\n- npm (or yarn)\n- MongoDB (or a MongoDB Atlas account)\n- Stripe account (for payment integration)(currently optional)\n- Clerk account (for authentication)\n- UploadThing account (for file uploading)\n\n### 🔧 Installation\n\n1. Clone the repository:\n\n   ```bash\n   git clone https://github.com/ompharate/creator-academy.git\n\n   ```\n\n2. Navigate to the project directory:\n\n   ```bash\n   cd creator-academy\n\n   ```\n\n3. Install the dependencies:\n   ```bash\n   npm install\n   ```\n4. Set up environment variables:\n   Create a .env file in the root directory and add the following:\n   env\n\n   ```bash\n   DATABASE_URL=\n   CLERK_ENCRYPTION_KEY=12345678\n   NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=\n   CLERK_SECRET_KEY=\n   NEXT_PUBLIC_CLERK_SIGN_IN_URL=/sign-in\n   NEXT_PUBLIC_CLERK_SIGN_UP_URL=/sign-up\n   NEXT_PUBLIC_CLERK_AFTER_SIGN_IN_URL=/onboarding\n   NEXT_PUBLIC_CLERK_AFTER_SIGN_UP_URL=/onboarding\n   UPLOADTHING_SECRET=\n   UPLOADTHING_APP_ID=\n\n   ```\n\n5. Start the development server:\n   ```bash\n   npm run dev\n   ```\n\nThis will start the application on http://localhost:3000.\n\n## ⚠️ Note\n\n\n\n## 🤝 Contributing\n\nContributions make the open-source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.\n\n1. Fork the Project\n2. Create your Feature Branch (git checkout -b feature/AmazingFeature)\n3. Commit your changes (git commit -m 'Add some AmazingFeature')\n4. Push to the Branch (git push origin feature/AmazingFeature)\n5. Open a Pull Request\n\n## 📜 License\n\nIt is distributed under the MIT License. See LICENSE for more information.\n\n## 📞 Contact\n\nOm Pharate - https://ompharate.tech - ompharate31@gmail.com\n\nProject Link: https://github.com/ompharate/creator-academy.git\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fompharate%2Fcreator-academy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fompharate%2Fcreator-academy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fompharate%2Fcreator-academy/lists"}