These repositories provide instructions and extensions for use with VS Code, VS Codium or other code-based editors.
Run code
and codium-server
as systemd services
How to run code serveweb
, code tunnel
and codium-server
as systemd services
A Visual Studio Code extension designed to help users manage and maintain the state of systemd services and units on their host systems.
"customizations": {
"vscode": {
"extensions": [
...,
"gbraad.systemd-universal-manager"
]
}
}
An extension that checks for and install my personal dotfiles
An extension that automates devenv.zsh
and machine.zsh
.
Install my personal dotfiles as a feature during the devcontainer build process.
"features": {
"ghcr.io/gbraad-dotfiles/devcontainer-features/dotfiles:latest": {}
}
Install Tailscale during the devcontainer build process.
"features": {
"ghcr.io/gbraad-vscode/devcontainer-features/tailscale:latest": {}
}
After which it is possible to use tailscale up
.
To know how to run devcontainers on CodeSpaces with systemd
enabled, have a look here: https://github.com/orgs/community/discussions/68954#discussioncomment-11812864
- name: Codium Server
if: ${{ failure() }}
uses: gbraad-actions/codium-server-action@v1
- name: Code serve web
if: ${{ failure() }}
uses: gbraad-actions/code-serveweb-action@v1
- name: Code tunnel
if: ${{ failure() }}
uses: gbraad-actions/code-tunnel-action@v1