mirror of
https://codeberg.org/Codeberg/pages-server.git
synced 2024-11-06 06:17:02 +00:00
7e80ade24b
Co-authored-by: 6543 <6543@obermui.de> Reviewed-on: https://codeberg.org/Codeberg/pages-server/pulls/263 Reviewed-by: 6543 <6543@obermui.de> Co-authored-by: crapStone <me@crapstone.dev> Co-committed-by: crapStone <me@crapstone.dev>
26 lines
860 B
JSON
26 lines
860 B
JSON
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Launch PagesServer",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "auto",
|
|
"program": "${workspaceFolder}/main.go",
|
|
"args": ["sqlite", "sqlite_unlock_notify", "netgo"],
|
|
"envFile": "${workspaceFolder}/.env-dev"
|
|
},
|
|
{
|
|
"name": "Launch PagesServer integration test",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "auto",
|
|
"program": "${workspaceFolder}/integration/main_test.go",
|
|
"args": ["codeberg.org/codeberg/pages/integration/..."],
|
|
"buildFlags": ["-tags", "'integration sqlite sqlite_unlock_notify netgo'"]
|
|
}
|
|
]
|
|
}
|