Template bucket for Scoop, the Windows command-line installer.
To add this bucket, run:
scoop bucket add scoop-coatl-dev https://github.com/coatl-dev/scoop-coatl-dev
To be able to download the ignition
ZIP installer we must set a referer,
so first we must edit our scoop
's config.json
, which is typically found at
%USERPROFILE%\.config\scoop\config.json
, and add or edit the private_hosts
section:
{
"lastUpdate": "2022-09-09T15:41:41.2176701-07:00",
"SCOOP_REPO": "https://github.com/ScoopInstaller/Scoop",
"SCOOP_BRANCH": "master",
"private_hosts": [
{
"match": "https://files.inductiveautomation.com/*",
"headers": "Referer=https://inductiveautomation.com/"
}
]
}
Finally:
scoop install ignition
To uninstall:
scoop uninstall --purge ignition
Since jython
depends on Java, we recommend java/zulu17-jre
, which can be installed by...
Adding the java
bucket:
scoop bucket add java
Then:
scoop install zulu17-jre
And finally:
scoop install jython
To uninstall:
scoop uninstall jython
To make a new manifest contribution, please read the Contributing Guide.