chore(devcontainer): add DiD, forgejo runner, aliases
Some checks failed
Actions / Build Documentation (MkDocs) (push) Successful in 43s
Actions / Lint Code (Ruff & Pylint) (push) Failing after 50s

This commit is contained in:
cswimr 2025-01-26 22:27:22 +00:00
parent 289da84b76
commit 666efaf893
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087
3 changed files with 12 additions and 1 deletions

View file

@ -4,6 +4,9 @@
"context": "..",
"dockerfile": "Dockerfile"
},
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {}
},
"customizations": {
"vscode": {
"extensions": [
@ -29,7 +32,9 @@
"UV_PYTHON_DOWNLOADS": "never",
"PROJECT_DIR": "/workspaces/SeaCogs"
},
"mounts": ["source=seacogs-persistent-data,target=/workspaces/SeaCogs/.data,type=volume"],
"mounts": [
"source=seacogs-persistent-data,target=/workspaces/SeaCogs/.data,type=volume"
],
"postCreateCommand": "uv sync --frozen && sudo chown -R vscode:vscode /workspaces/SeaCogs/.data && uv run redbot-setup --no-prompt --instance-name=local --data-path=/workspaces/SeaCogs/.data --backend=json",
"remoteUser": "vscode"
}