A template for a mc modpack with an intergrated buildscript written in python
- you need to have python3 and requests installed
- you need to supply a manifest.json, generated or handmade
- you need to have a CurseForge API key in the envar
CFAPIKEY
for server pack building - create override folders, in the format
<root>/scripts, <root>/config
the format for custom deps is in manifest.json
{
...,
"externalDeps":[
{
"url" : "the url of the jar file",
"hash" : "the hash of the mod, generated by build/getHash.py path/to/mod.jar",
"name": "the name of the mod"
}
],
...
}