Skip to content

Commit dcfda43

Browse files
update links to embedded app sdk examples (#7097)
1 parent 029d2af commit dcfda43

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

docs/activities/Building_An_Activity.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -326,8 +326,8 @@ This diagram illustrates the common pattern for granting a user an OAuth2 access
326326
327327
We will be implementing this pattern in this tutorial, but more example implementations can also be found in this sample project:
328328
329-
- [Back-end code](https://github.com/discord/embedded-app-sdk/blob/main/examples/discord-embedded-app-starter/packages/server/src/app.ts)
330-
- [Front-end code](https://github.com/discord/embedded-app-sdk/blob/main/examples/discord-embedded-app-starter/packages/client/src/main.ts)
329+
- [Back-end code](https://github.com/discord/embedded-app-sdk-examples/blob/main/discord-embedded-app-starter/packages/server/src/app.ts)
330+
- [Front-end code](https://github.com/discord/embedded-app-sdk-examples/blob/main/discord-embedded-app-starter/packages/client/src/main.ts)
331331
332332
</Collapsible>
333333
@@ -615,10 +615,10 @@ This is an intentionally simple example to get you started with the communicatio
615615
You can now explore our more extensive [development guides](#DOCS_ACTIVITIES_DEVELOPMENT_GUIDES) and [design patterns](#DOCS_ACTIVITIES_DESIGN_PATTERNS) to consider when building your app.
616616
617617
### Sample projects to try out next
618-
- Start with a blank slate using our [Discord Activity Starter](https://github.com/discord/embedded-app-sdk/tree/main/examples/discord-activity-starter) project
619-
- Try out the full range of SDK features in our [Embedded App SDK Playground](https://github.com/discord/embedded-app-sdk/tree/main/examples/sdk-playground)
620-
- Support multiplayer & state management using our [React Colyseus](https://github.com/discord/embedded-app-sdk/tree/main/examples/react-colyseus) project
621-
- Learn more about working with game engines and the [Nested Messages](https://github.com/discord/embedded-app-sdk/tree/main/examples/nested-messages) project
618+
- Start with a blank slate using our [Discord Activity Starter](https://github.com/discord/embedded-app-sdk-examples/tree/main/discord-activity-starter) project
619+
- Try out the full range of SDK features in our [Embedded App SDK Playground](https://github.com/discord/embedded-app-sdk-examples/tree/main/sdk-playground)
620+
- Support multiplayer & state management using our [React Colyseus](https://github.com/discord/embedded-app-sdk-examples/tree/main/react-colyseus) project
621+
- Learn more about working with game engines and the [Nested Messages](https://github.com/discord/embedded-app-sdk-examples/tree/main/nested-messages) project
622622
623623
### Support & Feedback
624624
During this Developer Preview, you can get support and report issues:

docs/activities/Development_Guides.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -903,7 +903,7 @@ All assets loaded by your application will respect [cache headers](https://devel
903903
904904
Be sure network requests made by your application's client and server will be able to respect Discord API's rate limiting [as described here](https://discord.com/developers/docs/topics/rate-limits).
905905
906-
See [this implementation in the Activity Starter project](https://github.com/discord/embedded-app-sdk/blob/main/examples/discord-activity-starter/packages/server/src/utils.ts) for an example of how to respect the `retry_after` header when you receive a 429 error.
906+
See [this implementation in the Activity Starter project](https://github.com/discord/embedded-app-sdk-examples/blob/main/discord-activity-starter/packages/server/src/utils.ts) for an example of how to respect the `retry_after` header when you receive a 429 error.
907907
908908
---
909909

docs/activities/Overview.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,19 +31,19 @@ The Embedded App SDK uses the RPC API to handle the communication between Discor
3131

3232
## Sample Projects
3333

34-
We've published some sample apps on [GitHub](https://github.com/discord/embedded-app-sdk/tree/main/examples) to help you get started building quickly and learn from common development patterns.
34+
We've published some sample apps on [GitHub](https://github.com/discord/embedded-app-sdk-examples) to help you get started building quickly and learn from common development patterns.
3535

3636
<Container>
37-
<Card title="Discord Activity Starter" link="https://github.com/discord/embedded-app-sdk/tree/main/examples/discord-activity-starter">
37+
<Card title="Discord Activity Starter" link="https://github.com/discord/embedded-app-sdk-examples/tree/main/discord-activity-starter">
3838
This TypeScript starter template is perfect for getting your own Activity up and running quickly.
3939
</Card>
40-
<Card title="Embedded App SDK Playground" link="https://github.com/discord/embedded-app-sdk/tree/main/examples/sdk-playground">
40+
<Card title="Embedded App SDK Playground" link="https://github.com/discord/embedded-app-sdk-examples/tree/main/sdk-playground">
4141
This reference example implements the commands and events available to you within the Embedded App SDK.
4242
</Card>
43-
<Card title="Multiplayer + State Management" link="https://github.com/discord/embedded-app-sdk/tree/main/examples/react-colyseus">
43+
<Card title="Multiplayer + State Management" link="https://github.com/discord/embedded-app-sdk-examples/tree/main/react-colyseus">
4444
This example uses React Colyseus to demonstrate state management in a multiplayer experience.
4545
</Card>
46-
<Card title="Nested Framework App" link="https://github.com/discord/embedded-app-sdk/tree/main/examples/nested-messages">
46+
<Card title="Nested Framework App" link="https://github.com/discord/embedded-app-sdk-examples/tree/main/nested-messages">
4747
This reference example demonstrates an Activity using a nested framework like a game engine.
4848
</Card>
4949
</Container>

0 commit comments

Comments
 (0)