2023-06-15 23:13:06 -06:00
|
|
|
{
|
|
|
|
"name": "Gitea DevContainer",
|
2024-09-09 20:23:07 -06:00
|
|
|
"image": "mcr.microsoft.com/devcontainers/go:1.23-bookworm",
|
2023-06-15 23:13:06 -06:00
|
|
|
"features": {
|
|
|
|
// installs nodejs into container
|
|
|
|
"ghcr.io/devcontainers/features/node:1": {
|
2024-03-19 17:08:42 -06:00
|
|
|
"version": "20"
|
2023-06-20 13:28:46 -06:00
|
|
|
},
|
2024-09-09 20:23:07 -06:00
|
|
|
"ghcr.io/devcontainers/features/git-lfs:1.2.2": {},
|
2023-06-21 02:44:58 -06:00
|
|
|
"ghcr.io/devcontainers-contrib/features/poetry:2": {},
|
2024-03-08 08:10:01 -07:00
|
|
|
"ghcr.io/devcontainers/features/python:1": {
|
|
|
|
"version": "3.12"
|
2024-06-03 04:41:29 -06:00
|
|
|
},
|
|
|
|
"ghcr.io/warrenbuckley/codespace-features/sqlite:1": {}
|
2023-06-15 23:13:06 -06:00
|
|
|
},
|
|
|
|
"customizations": {
|
|
|
|
"vscode": {
|
|
|
|
"settings": {},
|
|
|
|
// same extensions as Gitpod, should match /.gitpod.yml
|
|
|
|
"extensions": [
|
|
|
|
"editorconfig.editorconfig",
|
|
|
|
"dbaeumer.vscode-eslint",
|
|
|
|
"golang.go",
|
|
|
|
"stylelint.vscode-stylelint",
|
|
|
|
"DavidAnson.vscode-markdownlint",
|
|
|
|
"Vue.volar",
|
|
|
|
"ms-azuretools.vscode-docker",
|
2024-03-19 17:08:42 -06:00
|
|
|
"vitest.explorer",
|
2024-06-03 04:41:29 -06:00
|
|
|
"cweijan.vscode-database-client2",
|
2024-05-30 01:33:50 -06:00
|
|
|
"GitHub.vscode-pull-request-github",
|
|
|
|
"Azurite.azurite"
|
2023-06-15 23:13:06 -06:00
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"portsAttributes": {
|
|
|
|
"3000": {
|
|
|
|
"label": "Gitea Web",
|
|
|
|
"onAutoForward": "notify"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"postCreateCommand": "make deps"
|
|
|
|
}
|