Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/coatl-dev/scoop-coatl-dev
📦 coatl.dev Scoop bucket
https://github.com/coatl-dev/scoop-coatl-dev
ignition jython scoop scoop-apps scoop-bucket windows
Last synced: 6 days ago
JSON representation
📦 coatl.dev Scoop bucket
- Host: GitHub
- URL: https://github.com/coatl-dev/scoop-coatl-dev
- Owner: coatl-dev
- License: unlicense
- Created: 2022-09-09T02:14:22.000Z (over 2 years ago)
- Default Branch: coatl
- Last Pushed: 2024-05-20T23:27:25.000Z (8 months ago)
- Last Synced: 2024-05-21T01:15:31.409Z (7 months ago)
- Topics: ignition, jython, scoop, scoop-apps, scoop-bucket, windows
- Language: PowerShell
- Homepage:
- Size: 58.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# coatl.dev Scoop bucket
[![Tests](https://github.com/coatl-dev/scoop-coatl-dev/actions/workflows/ci.yml/badge.svg)](https://github.com/coatl-dev/scoop-coatl-dev/actions/workflows/ci.yml)
coatl-dev's bucket for [Scoop](https://scoop.sh), the Windows command-line installer.
## How do I install these manifests?
To add this bucket, run:
```powershell
scoop bucket add scoop-coatl-dev https://github.com/coatl-dev/scoop-coatl-dev
```### `ignition`
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:```json
{
"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:
```powershell
scoop install scoop-coatl-dev/ignition
```To uninstall:
```powershell
scoop uninstall --purge ignition
```### `jython`
Since `jython` depends on Java, we recommend `java/zulu17-jre`, which can be installed by...
Adding the `java` bucket:
```powershell
scoop bucket add java
```Then:
```powershell
scoop install zulu17-jre
```And finally:
```powershell
scoop install scoop-coatl-dev/jython
```To uninstall:
```powershell
scoop uninstall jython
```### Python
```powershell
scoop install scoop-coatl-dev/python27
``````powershell
scoop install scoop-coatl-dev/python312
``````powershell
scoop install scoop-coatl-dev/python313
```## How do I contribute new manifests?
To make a new manifest contribution, please read the [Contributing Guide].
[Contributing Guide]: https://github.com/ScoopInstaller/.github/blob/main/.github/CONTRIBUTING.md
[referer]: https://learn.microsoft.com/en-us/dotnet/api/system.net.httpwebrequest.referer