mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-27 23:47:33 -05:00
* allow proxy to route to micro service Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de> * use go micre ocdav service instead of reva frontend Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de> * add missing gateway default config Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de> * update reva branch for testing Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de> * add changelog Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de> * add missing comands Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de> * bump reva version Signed-off-by: jkoberg <jkoberg@owncloud.com> * tidy Signed-off-by: jkoberg <jkoberg@owncloud.com> * bump reva again Signed-off-by: jkoberg <jkoberg@owncloud.com> * a blind mans config change Signed-off-by: jkoberg <jkoberg@owncloud.com> * add ocdav to must start extensions Signed-off-by: jkoberg <jkoberg@owncloud.com> * fail when neither backend nor service is set Signed-off-by: jkoberg <jkoberg@owncloud.com> Co-authored-by: jkoberg <jkoberg@owncloud.com>
31 lines
1.4 KiB
JSON
31 lines
1.4 KiB
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",
|
|
// demo users
|
|
"ACCOUNTS_DEMO_USERS_AND_GROUPS": "true",
|
|
"IDM_CREATE_DEMO_USERS": "true"
|
|
// OCIS_RUN_EXTENSIONS allows to start a subset of extensions even in the supervised mode
|
|
//"OCIS_RUN_EXTENSIONS": "settings,storage-metadata,glauth,graph,graph-explorer,idp,ocs,store,thumbnails,web,webdav,storage-frontend,storage-gateway,storage-userprovider,storage-groupprovider,storage-authbasic,storage-authbearer,storage-authmachine,storage-users,storage-shares,storage-public-link,storage-appprovider,storage-sharing,accounts,proxy,ocdav",
|
|
}
|
|
}
|
|
]
|
|
}
|