This tools is provided to manage moodle plugins installation since installing manually is very cumbersome.
Inspired by silecs/moodle-gitplugins but using Deno
Follow the example on easyclone.example.yaml
root(default:.): location of the moodle base or any projectstrict(default:false): iftruedeleterepositories.targetifrepositories.enableistrueandrepositories.targetdirectory is existforce(default:false): iftrueit will not ask confirmation when deleting foldercleanup(default:[.git, .github]): array of string which files or folders will be deleted after installing pluginskip(default:false): ifrepositories.enableistrueandstrictisfalse, willskipinstallationrepositories:url: URL of the repo, can beorg/repofor Github repositories or absolute URLhttps://gitlab.com/org/repo.git. Mutually exclusive withpathbranch(optional): specify branch or tag otherwise it will clone the latest. Only whenurlis specifiedhash(optional): specify hash. This will skipbranchconfig if specified. Only whenurlis specifiedpath: path to the plugin for local directory. Mutually exclusive withurltarget: location to installenable(default:true): enable installation of the plugin. Seeskipandstrictfor how to delete existing pluginskip(optional, boolean): same as parent configskipbut takes higher priority if setcleanup(default:[]): Same ascleanupparent config but specific files or folders per plugin
You can use environment variables to override the config values. The format is ${ENV_VARIABLE} or ${ENV_VARIABLE:-defaultValue}, for example:
root: ${MOODLE_ROOT:-path/to/moodle}
# ... other data
repositories:
- url: https://${GH_USERNAME}:${GH_PERSONAL_ACCESS_TOKEN}@github.com/org/repo.git
target: local/testCredit to: eNiiju/safe-yaml-env
deno run -A main.ts
deno compile --allow-run=git --allow-read --allow-write --allow-env main.ts
-p <path>, --path <path>(optional): specify config file location. Default:easyclone.yaml
MIT License
Copyright (c) [2025] [Farly Fitrian Dwiputra]
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.