add evns to launch.

This commit is contained in:
Miroslav Šedivý 2024-09-06 23:21:57 +02:00
parent b9ff172c15
commit 168507dcd4

5
.vscode/launch.json vendored
View file

@ -14,7 +14,10 @@
"output": "${workspaceFolder}/server/bin/debug/neko", "output": "${workspaceFolder}/server/bin/debug/neko",
"cwd": "${workspaceFolder}/server/", "cwd": "${workspaceFolder}/server/",
"args": ["serve", "-d", "-c", "dev/runtime/config.yml"], "args": ["serve", "-d", "-c", "dev/runtime/config.yml"],
"envFile": "${workspaceFolder}/server/.env.development" "env": {
"DISPLAY": ":99.0",
"PION_LOG_TRACE": "all",
}
} }
] ]
} }