Created
April 17, 2023 22:01
-
-
Save bebrws/71ae9afebf68a4c33711808571f6cd57 to your computer and use it in GitHub Desktop.
Configure a local Sourcegraph instance to not require login - UNSAFE if server is public
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"auth.degraded.public": true, | |
"auth.public": true, | |
"auth.providers": [ | |
{ | |
"allowSignup": true, | |
"type": "builtin" | |
} | |
], | |
"externalURL": "http://localhost:3080", | |
"codeIntelAutoIndexing.enabled": true, | |
"codeIntelAutoIndexing.allowGlobalPolicies": true, | |
"executors.frontendURL": "http://host.docker.internal:3080", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment