> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mattildapayments.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Step 5: Go live

After testing your implementation in your sandbox environment, the next step
is to set up your production environment and go live.

1. Change the `environment` parameter to `production`.
2. Create a production API key

<CodeGroup>
  ```html React theme={"dark"}
  <form action='/' id='payment-form'>
    <Embed
      gr4vyId='mattilda'
      environment='production',
      ...
    />
    <input type="submit" />
  </form>
  ```

  ```js Node theme={"dark"}
  setup({
    gr4vyId: "mattilda",
    environment: "production"
    ...
  });
  ```

  ```js CDN theme={"dark"}
  gr4vy.setup({
    gr4vyId: "mattilda",
    environment "production",
    ...
  });
  ```
</CodeGroup>

After completion, your transactions should appear in production environment.

## Summary

* Go live with Embed
