Skip to content

Commit c65f684

Browse files
committed
chore(env): changed wording to Stack Internal
1 parent ea2a26b commit c65f684

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

app-config.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ stackoverflow:
1616
# Required only for Basic and Business Tiers.
1717

1818
apiAccessToken: ${STACK_OVERFLOW_API_ACCESS_TOKEN}
19+
20+
# apiAccessToken: ${STACK_OVERFLOW_BUSINESS_ACCESS_TOKEN}
1921
# The API Access Token is used for the Questions' collator, a no-expiry, read-only token is recommended.
2022

2123
clientId: ${STACK_OVERFLOW_CLIENT_ID}

packages/app/src/components/Root/Root.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export const Root = ({ children }: PropsWithChildren<{}>) => (
8080
<SidebarItem
8181
icon={StackOverflowIcon}
8282
to="stack-overflow-teams"
83-
text="Stack Overflow Internal"
83+
text="Stack Internal"
8484
/>
8585
<SidebarItem
8686
icon={StackOverflowIcon}

packages/app/src/components/search/SearchPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const SearchPage = () => {
6060
},
6161
{
6262
value: 'stack-overflow',
63-
name: 'Stack Overflow',
63+
name: 'Stack Internal',
6464
icon: <StackOverflowIcon />,
6565
},
6666
]}

packages/backend/sample.env

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
STACK_OVERFLOW_INSTANCE_URL=https://[your-site]/api/v3
2-
# This token doesn't needd scope=write_access, this is only use to create an index of all the questions of your Stack Overflow Internal instance.
32
STACK_OVERFLOW_API_ACCESS_TOKEN=
4-
# API Application must have read-write permissions, please provide the application's id.
3+
STACK_OVERFLOW_BUSINESS_ACCESS_TOKEN=
4+
# This token doesn't needd scope=write_access, this is only use to create an index of all the questions of your Stack Overflow Internal instance.
55
STACK_OVERFLOW_CLIENT_ID=
6-
# To run the integration on localhost, we need to redirect to localhost. SOE Requires a top-level domain, therefore we are using a redirection service that takes you to localhost. If you do have Backstage on a top level domain, change the redirect uri accordingly.
7-
STACK_OVERFLOW_REDIRECT_URI=http://redirectmeto.com/http://localhost:3000/stack-overflow-teams
6+
# API Application must have read-write permissions, please provide the application's id.
7+
STACK_OVERFLOW_REDIRECT_URI=http://redirectmeto.com/http://localhost:3000/stack-overflow-teams
8+
# To run the integration on localhost, we need to redirect to localhost. SOE Requires a top-level domain, therefore we are using a redirection service that takes you to localhost. If you do have Backstage on a top level domain, change the redirect uri accordingly.

0 commit comments

Comments
 (0)