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
): iftrue
deleterepositories.target
ifrepositories.enable
istrue
andrepositories.target
directory is existforce
(default:false
): iftrue
it 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.enable
istrue
andstrict
isfalse
, willskip
installationrepositories
:url
: URL of the repo, can beorg/repo
for Github repositories or absolute URLhttps://gitlab.com/org/repo.git
. Mutually exclusive withpath
branch
(optional): specify branch or tag otherwise it will clone the latest. Only whenurl
is specifiedhash
(optional): specify hash. This will skipbranch
config if specified. Only whenurl
is specifiedpath
: path to the plugin for local directory. Mutually exclusive withurl
target
: location to installenable
(default:true
): enable installation of the plugin. Seeskip
andstrict
for how to delete existing pluginskip
(optional, boolean): same as parent configskip
but takes higher priority if setcleanup
(default:[]
): Same ascleanup
parent 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/test
Credit 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.