mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-07 21:00:30 -06:00
26 lines
818 B
JSON
26 lines
818 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "oCIS server",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "debug",
|
|
"program": "${workspaceFolder}/ocis/cmd/ocis",
|
|
"args": [
|
|
"server"
|
|
],
|
|
"env": {
|
|
// log settings for human developers
|
|
"OCIS_LOG_LEVEL": "debug",
|
|
"OCIS_LOG_PRETTY": "true",
|
|
"OCIS_LOG_COLOR": "true",
|
|
// enable basic auth for dev setup so that we can use curl for testing
|
|
"PROXY_ENABLE_BASIC_AUTH": "true",
|
|
// set insecure options because we don't have valid certificates in dev environments
|
|
"OCIS_INSECURE": "true",
|
|
}
|
|
}
|
|
]
|
|
}
|