Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/martinaskestad/features
https://github.com/martinaskestad/features
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/martinaskestad/features
- Owner: MartinAskestad
- License: mit
- Created: 2024-09-21T07:59:00.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-11-30T09:55:10.000Z (about 1 month ago)
- Last Synced: 2024-11-30T10:28:15.958Z (about 1 month ago)
- Language: Shell
- Homepage:
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Features
This project **Features** is a set of reusable 'features'. Quickly add a tool/cli to a development container.
*Features* are self-contained units of installation code and development container configuration. Features are designed to install atop a wide-range of base container images.
> This repo follows the [**proposed** dev container feature distribution specification](https://containers.dev/implementors/features-distribution/).
**List of features:**
* [vimsrc](src/vimsrc/README.md): Vim, from source, choose functions like lua or python.
* [smlnj](src/smlnj/README.md): Standard-ML of New Jersey.
* [mingw](src/mingw/README.md): MinGW-w64.## Usage
To reference a feature from this repository, add the desired features to a devcontainer.json. Each feature has a README.md that shows how to reference the feature and which options are available for that feature.
The example below installs the *vim* declared in the `./src` directory of this repository.
See the relevant feature's README for supported options.
```jsonc
{
"image": "ubuntu",
"features": {
"ghcr.io/martinaskestadfeatures/vimsrc": {
"enable_lua": true
}
}
}
```