feat: support https

This commit is contained in:
Jacky 2025-03-31 02:34:39 +00:00
parent b1a7866725
commit 1ca802d829
No known key found for this signature in database
GPG key ID: 215C21B10DF38B4D
40 changed files with 1845 additions and 736 deletions

48
.vscode/tasks.json vendored
View file

@ -43,6 +43,52 @@
"isDefault": true
},
"problemMatcher": []
},
{
"label": "[App] Gettext Extract",
"type": "shell",
"command": "cd app && pnpm gettext:extract",
"isBackground": true,
"presentation": {
"panel": "new"
},
"problemMatcher": []
},
{
"label": "[App] ESLint Fix",
"type": "shell",
"command": "cd app && pnpm lint --fix",
"presentation": {
"panel": "new"
},
"problemMatcher": []
},
{
"label": "[App] Typecheck",
"type": "shell",
"command": "cd app && pnpm typecheck",
"presentation": {
"panel": "new"
},
"problemMatcher": []
},
{
"label": "Go Generate",
"type": "shell",
"command": "./gen.sh",
"presentation": {
"panel": "new"
},
"problemMatcher": []
},
{
"label": "Bump Version",
"type": "shell",
"command": "./version.sh",
"presentation": {
"panel": "new"
},
"problemMatcher": []
}
]
}
}