Skip to content

Commit

Permalink
docs: update CPN and deployment links
Browse files Browse the repository at this point in the history
  • Loading branch information
teddyward committed Aug 27, 2024
1 parent ee0fe20 commit fcb8c24
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
4 changes: 3 additions & 1 deletion addons-web-sdk/samples/hello-world-react-ts-vite/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# React TypeScript example

This "hello, world!" add-on is built using React, TypeScript, and Vite in order to show how a React app can be modified to work as an add-on.
This "hello, world!" add-on is built using React, TypeScript, and Vite in order to show how a React app can be modified to work as an add-on. It is very similar to the sample at <https://github.com/googleworkspace/meet/tree/main/addons-web-sdk/samples/hello-world>, but the basic structure is a multi-page React app. Please see other samples at <https://github.com/googleworkspace/meet/tree/main/addons-web-sdk/samples> to learn more advanced functionality!

You can view a deployed version of this Add-on at <https://googleworkspace.github.io/meet/hello-world-react-ts-vite/SidePanel.html> and its corresponding [MainStage.html](https://googleworkspace.github.io/meet/hello-world-react-ts-vite/MainStage.html).
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
<script type="module" src="/mainStage.tsx"></script>
</body>

</html>
</html>
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
<script type="module" src="/sidePanel.tsx"></script>
</body>

</html>
</html>
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
// limitations under the License.

// TODO: Make sure that you modify these constants, if you fork this!
export const CLOUD_PROJECT_NUMBER: string = "12345678910";
export const CLOUD_PROJECT_NUMBER: string = "989911054302";
export const MAIN_STAGE_URL: string = "https://googleworkspace.github.io/meet/hello-world-react-ts-vite/MainStage.html"
4 changes: 3 additions & 1 deletion addons-web-sdk/samples/hello-world/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Hello, World: The Add-on

This is approximately the simplest possible add-on. The only requirements to get started here are npm and GitHub. The intent of publishing this add-on is to demonstrate how easy it is to get started with rendering custom content using an add-on. Please see other samples at <https://github.com/googleworkspace/meet/tree/main/addons-web-sdk/samples> to learn more advanced functionality!
This is approximately the simplest possible Meet add-on. The only requirements to get started here are npm and GitHub. The intent of publishing this add-on is to demonstrate how easy it is to get started with rendering custom content using an add-on. Please see other samples at <https://github.com/googleworkspace/meet/tree/main/addons-web-sdk/samples> to learn more advanced functionality!

You can view a deployed version of this Add-on at <https://googleworkspace.github.io/meet/hello-world/SidePanel.html> and its corresponding [MainStage.html](https://googleworkspace.github.io/meet/hello-world/MainStage.html).
2 changes: 1 addition & 1 deletion addons-web-sdk/samples/hello-world/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import { meet } from '@googleworkspace/meet-addons/meet.addons';

// TODO: Make sure that you modify these constants, if you fork this!
const CLOUD_PROJECT_NUMBER = "12345678910";
const CLOUD_PROJECT_NUMBER = "989911054302";
const MAIN_STAGE_URL = "https://googleworkspace.github.io/meet/hello-world/MainStage.html"

/**
Expand Down

0 comments on commit fcb8c24

Please sign in to comment.