π Installs direnv and sets up hooks
// devcontainer.json
{
"features": {
"ghcr.io/devcontainers-community/features/direnv": {}
}
}
β Don't know what this β means? Check out this VS Code blog post.
You can set version
to one of latest
, system
, or N.N.N
to pin a specific version:
// devcontainer.json
{
"features": {
"ghcr.io/devcontainers-community/features/direnv": {
"version": "1.0.0"
}
}
}