mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 18:51:59 +00:00
Only today did I learn about the "Federation" feature: https://docs.sourcegraph.com/admin/federation/public_repositories It's supposed to redirect users from private instances to sourcegraph.com. But it has been broken since at least a year: https://github.com/sourcegraph/sourcegraph/issues/38263#issuecomment-1205110145 It's also confusing. Here's my proposal to remove it. ## Test plan - N/A
14 lines
292 B
JSON
14 lines
292 B
JSON
// The Sourcegraph site configuration for development servers.
|
|
{
|
|
"auth.providers": [
|
|
{
|
|
"type": "builtin",
|
|
"allowSignup": false
|
|
}
|
|
],
|
|
"externalURL": "http://localhost:3080/",
|
|
"update.channel": "release",
|
|
"experimentalFeatures": {},
|
|
"repoListUpdateInterval": 1
|
|
}
|