An open API service indexing awesome lists of open source software.

https://github.com/backwardspy/pigeon-devcontainer


https://github.com/backwardspy/pigeon-devcontainer

Last synced: 8 months ago
JSON representation

Awesome Lists containing this project

README

          

# pigeon devcontainer

it's pigeon's devcontainer base... you probably don't want to use this.

if for some reason you *do*, try something like this:

```json
{
"image": "ghcr.io/backwardspy/pigeon-devcontainer:latest",
// add whichever features you need
"features": {
"ghcr.io/devcontainers/features/python:1": {
"version": "3.12",
"installTools": false
},
"ghcr.io/devcontainers-contrib/features/poetry:2": {}
},
// the image includes fish shell
"customizations": {
"vscode": {
"settings": {
"terminal.integrated.defaultProfile.linux": "fish"
},
}
}
}
```