{"id":48078594,"url":"https://github.com/codeville-org/learnville","last_synced_at":"2026-04-04T14:52:19.227Z","repository":{"id":331797433,"uuid":"1125196212","full_name":"codeville-org/learnville","owner":"codeville-org","description":"LearnVille - By CodeVille is our official LMS platform that offers seamless learning experience for students.","archived":false,"fork":false,"pushed_at":"2026-02-19T13:28:43.000Z","size":1871,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-19T17:29:25.497Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://learnville.vercel.app","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/codeville-org.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":"roadmap.md","authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2025-12-30T09:56:49.000Z","updated_at":"2026-02-19T13:28:48.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/codeville-org/learnville","commit_stats":null,"previous_names":["codeville-org/learnville"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/codeville-org/learnville","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeville-org%2Flearnville","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeville-org%2Flearnville/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeville-org%2Flearnville/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeville-org%2Flearnville/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codeville-org","download_url":"https://codeload.github.com/codeville-org/learnville/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeville-org%2Flearnville/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31403779,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T10:20:44.708Z","status":"ssl_error","status_checked_at":"2026-04-04T10:20:06.846Z","response_time":60,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":"2026-04-04T14:52:19.120Z","updated_at":"2026-04-04T14:52:19.211Z","avatar_url":"https://github.com/codeville-org.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Payload Blank Template\n\nThis template comes configured with the bare minimum to get started on anything you need.\n\n## Quick start\n\nThis template can be deployed directly from our Cloud hosting and it will setup MongoDB and cloud S3 object storage for media.\n\n## Quick Start - local setup\n\nTo spin up this template locally, follow these steps:\n\n### Clone\n\nAfter you click the `Deploy` button above, you'll want to have standalone copy of this repo on your machine. If you've already cloned this repo, skip to [Development](#development).\n\n### Development\n\n1. First [clone the repo](#clone) if you have not done so already\n2. `cd my-project \u0026\u0026 cp .env.example .env` to copy the example environment variables. You'll need to add the `MONGODB_URL` from your Cloud project to your `.env` if you want to use S3 storage and the MongoDB database that was created for you.\n\n3. `pnpm install \u0026\u0026 pnpm dev` to install dependencies and start the dev server\n4. open `http://localhost:3000` to open the app in your browser\n\nThat's it! Changes made in `./src` will be reflected in your app. Follow the on-screen instructions to login and create your first admin user. Then check out [Production](#production) once you're ready to build and serve your app, and [Deployment](#deployment) when you're ready to go live.\n\n#### Docker (Optional)\n\nIf you prefer to use Docker for local development instead of a local MongoDB instance, the provided docker-compose.yml file can be used.\n\nTo do so, follow these steps:\n\n- Modify the `MONGODB_URL` in your `.env` file to `mongodb://127.0.0.1/\u003cdbname\u003e`\n- Modify the `docker-compose.yml` file's `MONGODB_URL` to match the above `\u003cdbname\u003e`\n- Run `docker-compose up` to start the database, optionally pass `-d` to run in the background.\n\n## How it works\n\nThe Payload config is tailored specifically to the needs of most websites. It is pre-configured in the following ways:\n\n### Collections\n\nSee the [Collections](https://payloadcms.com/docs/configuration/collections) docs for details on how to extend this functionality.\n\n- #### Users (Authentication)\n\n  Users are auth-enabled collections that have access to the admin panel.\n\n  For additional help, see the official [Auth Example](https://github.com/payloadcms/payload/tree/main/examples/auth) or the [Authentication](https://payloadcms.com/docs/authentication/overview#authentication-overview) docs.\n\n- #### Media\n\n  This is the uploads enabled collection. It features pre-configured sizes, focal point and manual resizing to help you manage your pictures.\n\n### Docker\n\nAlternatively, you can use [Docker](https://www.docker.com) to spin up this template locally. To do so, follow these steps:\n\n1. Follow [steps 1 and 2 from above](#development), the docker-compose file will automatically use the `.env` file in your project root\n1. Next run `docker-compose up`\n1. Follow [steps 4 and 5 from above](#development) to login and create your first admin user\n\nThat's it! The Docker instance will help you get up and running quickly while also standardizing the development environment across your teams.\n\n## Questions\n\nIf you have any issues or questions, reach out to us on [Discord](https://discord.com/invite/payload) or start a [GitHub discussion](https://github.com/payloadcms/payload/discussions).\n\n---\n\n### Developer Notes\n\n- Local build test - success (31st of January)\n\n### Todo List\n\n- Fix rich-text content rendering on Top Banner - Done\n- About Section's CTA is showing even CTA Disabled - Done\n\n- Add custom internal link type \u0026 Fix link mismatch issues\n  - Site Header -\u003e Explore Menu Configuration -\u003e \"View All\" Link - Done\n  - Top Categories Block -\u003e CTA Link Type - Done\n  - Fix category item link to courses page - Done\n  - Fix CTA cards and buttons Link Type - Done\n  - Fix Site Footer Link Column Link Types - Done\n\n- Minor Fixes\n  - dynamic blog page slug for post links - done\n  - Fix toast issue - done\n\n- Course Showcasing\n  - Add youtube / bunny video feature for lesson videos - Done (bunny test pending)\n  - Prepare 1 - 3 (at least) courses for feature showcasing purposes - Done\n  - Develop courses listing page on landing page - up next\n  - Develop single course page in landing page with payment page - Up next\n\n- Bugs noted\n  - pdf (etc.) files aren't uploading\n  - inconsistancy of relationship between lessons and chapters (_in production_) - Fixed\n  - generates duplicated copies of lessons, courses with same id when creating/updating from production / live site (_in production_) - Fixed\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodeville-org%2Flearnville","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodeville-org%2Flearnville","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodeville-org%2Flearnville/lists"}