--- title: "Installation & Setup" slug: "installation-setup" updated: 2026-06-10T09:11:37Z published: 2026-06-23T10:52:16Z canonical: "help.frisbii.com/installation-setup" --- > ## Documentation Index > Fetch the complete documentation index at: https://help.frisbii.com/llms.txt > Use this file to discover all available pages before exploring further. # Installation & Setup The Frisbii Media JavaScript SDK provides the tools to embed checkout, SSO, and the self-service portal into any website. It loads as a single script tag and requires no package manager or build step. --- ## Script tag Place the script tag at the **end of your** `<body>` element, just before `</body>`. JavaScript embeds can slow down page load — placing the script at the end ensures the rest of your page renders first. **Live:** ```plaintext ``` **Stage (for development and testing):** ```plaintext ``` Replace `{your_companyId}` with your Company ID from the Frisbii Media backend under **Settings → Developer**. > [!NOTE] > Your stage account uses a **different Company ID** than your production account. Make sure you use the correct one for each environment. See [Environments: Stage vs. Live](/frisbii-media/docs/environments). --- ## Script tag attributes | Attribute | Required | Description | | --- | --- | --- | | `data-company-id` | ✅ | Your Frisbii Media Company ID | | `data-lang` | | Language code for the SDK UI, e.g. `en`, `de`, `fr`. Defaults to `en`. | --- ## Minimal HTML structure ```xml