Skip to content

Commit 4182e89

Browse files
Merge branch 'main' into baseai-memory
2 parents c298a78 + c3e024b commit 4182e89

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+4333
-7169
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,11 @@ next-env.d.ts
4545

4646
# We ignore the generated file as it should always be generated
4747
public/changelog.rss
48+
4849
# baseai
4950
**/.baseai/
51+
5052
# env file
5153
.env
54+
55+
public/technical-changelog.rss

dev/rss.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const fs = require('fs');
33
const path = require('path');
44

55
const loadChangelog = () => {
6-
const changelogPath = path.join(__dirname, '..', 'docs', 'CHANGELOG.mdx');
6+
const changelogPath = path.join(__dirname, '..', 'docs', 'technical-changelog.mdx');
77
return fs.readFileSync(changelogPath, 'utf8');
88
}
99

@@ -36,7 +36,7 @@ const generateRssFeed = () => {
3636
updated: date,
3737
generator: 'Sourcegraph RSS Feed',
3838
feedLinks: {
39-
rss2: `${siteURL}/changelog.rss`,
39+
rss2: `${siteURL}/technical-changelog.rss`,
4040
},
4141
author: {
4242
name: 'Sourcegraph',
@@ -55,7 +55,7 @@ const generateRssFeed = () => {
5555
continue;
5656
}
5757
const tag = comment.version.replace('v', '');
58-
const versionDocLink = `${siteURL}/CHANGELOG#${comment.version.replaceAll('.', '')}`;
58+
const versionDocLink = `${siteURL}/technical-changelog#${comment.version.replaceAll('.', '')}`;
5959
feed.addItem({
6060
title: `Sourcegraph ${tag}`,
6161
id: comment.version,
@@ -65,7 +65,7 @@ const generateRssFeed = () => {
6565
});
6666
}
6767

68-
fs.writeFileSync(path.join(__dirname, '../public/changelog.rss'), feed.rss2());
68+
fs.writeFileSync(path.join(__dirname, '../public/technical-changelog.rss'), feed.rss2());
6969
}
7070

7171
module.exports = { generateRssFeed }

docs/admin/auth/index.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -334,6 +334,7 @@ Then add the following lines to your [site configuration](/admin/config/site_con
334334
"displayName": "Bitbucket Server",
335335
"clientID": "replace-with-the-oauth-client-id",
336336
"clientSecret": "replace-with-the-oauth-client-secret"
337+
"allowSignup": false // This is set to false by default, which means that any bitbucket server user cannot automatically sign up to access your instance.
337338
}
338339
]
339340
```

docs/admin/code_hosts/jvm.mdx

Lines changed: 0 additions & 91 deletions
This file was deleted.

docs/admin/code_hosts/npm.mdx

Lines changed: 0 additions & 83 deletions
This file was deleted.

docs/admin/code_hosts/package-repos.mdx

Lines changed: 0 additions & 49 deletions
This file was deleted.

docs/admin/code_hosts/python.mdx

Lines changed: 0 additions & 83 deletions
This file was deleted.

0 commit comments

Comments
 (0)