diff --git a/.gitignore b/.gitignore index 16a4eaabb..486fc17c7 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,9 @@ dist/ *crt node_modules/ */assets +ocis/ocis +ocis/cmd/ocis/__debug_bin +ocis/cmd/ocis/config/ .idea diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 000000000..37d283a4b --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,19 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "oCIS server", + "type": "go", + "request": "launch", + "mode": "debug", + "program": "${workspaceFolder}/ocis/cmd/ocis", + "args": ["server"], + "env": { + "OCIS_LOG_LEVEL": "debug", + "OCIS_LOG_PRETTY": "true", + "OCIS_LOG_COLOR": "true", + "PROXY_ENABLE_BASIC_AUTH": "true" + } + }, + ] +} \ No newline at end of file