Skip to content

Commit 1f685f1

Browse files
authored
Merge branch 'main' into orgmail
2 parents 3cf0815 + 469d89b commit 1f685f1

File tree

814 files changed

+24224
-16784
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

814 files changed

+24224
-16784
lines changed

.devcontainer/devcontainer.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"name": "Gitea DevContainer",
3+
"image": "mcr.microsoft.com/devcontainers/go:1.20",
4+
"features": {
5+
// installs nodejs into container
6+
"ghcr.io/devcontainers/features/node:1": {
7+
"version":"20"
8+
},
9+
"ghcr.io/devcontainers/features/git-lfs:1.1.0": {},
10+
"ghcr.io/devcontainers-contrib/features/poetry:2": {},
11+
"ghcr.io/devcontainers/features/python:1": {}
12+
},
13+
"customizations": {
14+
"vscode": {
15+
"settings": {},
16+
// same extensions as Gitpod, should match /.gitpod.yml
17+
"extensions": [
18+
"editorconfig.editorconfig",
19+
"dbaeumer.vscode-eslint",
20+
"golang.go",
21+
"stylelint.vscode-stylelint",
22+
"DavidAnson.vscode-markdownlint",
23+
"Vue.volar",
24+
"ms-azuretools.vscode-docker",
25+
"zixuanchen.vitest-explorer",
26+
"qwtel.sqlite-viewer"
27+
]
28+
}
29+
},
30+
"portsAttributes": {
31+
"3000": {
32+
"label": "Gitea Web",
33+
"onAutoForward": "notify"
34+
}
35+
},
36+
"postCreateCommand": "make deps"
37+
}

0 commit comments

Comments
 (0)