{"id":16260806,"url":"https://github.com/piyush-linux/strapi-lms","last_synced_at":"2025-07-30T22:10:44.403Z","repository":{"id":157592528,"uuid":"631934402","full_name":"Piyush-linux/strapi-lms","owner":"Piyush-linux","description":null,"archived":false,"fork":false,"pushed_at":"2023-04-27T19:00:22.000Z","size":207,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-14T10:26:23.544Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/Piyush-linux.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}},"created_at":"2023-04-24T11:20:39.000Z","updated_at":"2023-04-24T11:24:59.000Z","dependencies_parsed_at":null,"dependency_job_id":"1a082c20-15ba-49ba-a688-10871c3161b4","html_url":"https://github.com/Piyush-linux/strapi-lms","commit_stats":{"total_commits":2,"total_committers":1,"mean_commits":2.0,"dds":0.0,"last_synced_commit":"cd19a5721308dd409c37203868ccab133746d087"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Piyush-linux%2Fstrapi-lms","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Piyush-linux%2Fstrapi-lms/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Piyush-linux%2Fstrapi-lms/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Piyush-linux%2Fstrapi-lms/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Piyush-linux","download_url":"https://codeload.github.com/Piyush-linux/strapi-lms/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247856542,"owners_count":21007621,"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":[],"created_at":"2024-10-10T16:21:18.649Z","updated_at":"2025-04-08T14:14:54.128Z","avatar_url":"https://github.com/Piyush-linux.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"```js\nmodule.exports = (plugin) =\u003e {\n  // custom controller\n  plugin.controllers.user.updateMe = async (ctx) =\u003e {\n    if (!ctx.state.user || !ctx.state.user.id) {\n      return ctx.response.status = 401\n    }\n\n    await strapi.query('plugin::users-permissions.user').update({\n      where: { id: ctx.state.user.id },\n      data: ctx.request.body\n    }).then(res =\u003e {\n      ctx.response.status = 200\n    })\n  }\n\n  // custom route\n  plugin.routes[\"content-api\"].routes.push(\n    {\n      method: \"PUT\",\n      path: \"/user/me\",                         \n      handler: \"user.updateMe\",\n      config: {\n        prefix: \"\",\n        policies: []\n      }\n    })\n\n  return plugin\n}\n```\n\n# 🚀 Getting started with Strapi\n\nStrapi comes with a full featured [Command Line Interface](https://docs.strapi.io/developer-docs/latest/developer-resources/cli/CLI.html) (CLI) which lets you scaffold and manage your project in seconds.\n\n### `develop`\n\nStart your Strapi application with autoReload enabled. [Learn more](https://docs.strapi.io/developer-docs/latest/developer-resources/cli/CLI.html#strapi-develop)\n\n```\nnpm run develop\n# or\nyarn develop\n```\n\n### `start`\n\nStart your Strapi application with autoReload disabled. [Learn more](https://docs.strapi.io/developer-docs/latest/developer-resources/cli/CLI.html#strapi-start)\n\n```\nnpm run start\n# or\nyarn start\n```\n\n### `build`\n\nBuild your admin panel. [Learn more](https://docs.strapi.io/developer-docs/latest/developer-resources/cli/CLI.html#strapi-build)\n\n```\nnpm run build\n# or\nyarn build\n```\n\n## ⚙️ Deployment\n\nStrapi gives you many possible deployment options for your project. Find the one that suits you on the [deployment section of the documentation](https://docs.strapi.io/developer-docs/latest/setup-deployment-guides/deployment.html).\n\n## 📚 Learn more\n\n- [Resource center](https://strapi.io/resource-center) - Strapi resource center.\n- [Strapi documentation](https://docs.strapi.io) - Official Strapi documentation.\n- [Strapi tutorials](https://strapi.io/tutorials) - List of tutorials made by the core team and the community.\n- [Strapi blog](https://docs.strapi.io) - Official Strapi blog containing articles made by the Strapi team and the community.\n- [Changelog](https://strapi.io/changelog) - Find out about the Strapi product updates, new features and general improvements.\n\nFeel free to check out the [Strapi GitHub repository](https://github.com/strapi/strapi). Your feedback and contributions are welcome!\n\n## ✨ Community\n\n- [Discord](https://discord.strapi.io) - Come chat with the Strapi community including the core team.\n- [Forum](https://forum.strapi.io/) - Place to discuss, ask questions and find answers, show your Strapi project and get feedback or just talk with other Community members.\n- [Awesome Strapi](https://github.com/strapi/awesome-strapi) - A curated list of awesome things related to Strapi.\n\n---\n\n\u003csub\u003e🤫 Psst! [Strapi is hiring](https://strapi.io/careers).\u003c/sub\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpiyush-linux%2Fstrapi-lms","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpiyush-linux%2Fstrapi-lms","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpiyush-linux%2Fstrapi-lms/lists"}