Skip to content

Commit c08c2d4

Browse files
Setup a starter kit for the SDK workshop (#1)
* setup sample app for the workshop * update docs * README.md updates * update quickstart section Co-authored-by: Jeff Bruemmer <[email protected]> * add notes about adding Docker to PATH Co-authored-by: Jeff Bruemmer <[email protected]> * modify notes on MetabaseProvider Co-authored-by: Jeff Bruemmer <[email protected]> * modify doc heading on MetabaseProvider Co-authored-by: Jeff Bruemmer <[email protected]> * grammar fixes Co-authored-by: Jeff Bruemmer <[email protected]> * add simpler setup steps Co-authored-by: Jeff Bruemmer <[email protected]> * cleanup docs * remove existing copy --------- Co-authored-by: Jeff Bruemmer <[email protected]>
1 parent d527043 commit c08c2d4

12 files changed

+3669
-151
lines changed

README.md

+85-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,90 @@
1-
# React + Vite
1+
# Metabase Embedded Analytics Workshop
22

3-
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
3+
This is a starter React app for trying out [Embedded Analytics SDK](https://www.metabase.com/docs/latest/embedding/sdk/introduction).
44

5-
Currently, two official plugins are available:
5+
## Getting Started
66

7-
- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
8-
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
7+
1. Clone this repository:
98

10-
## Expanding the ESLint configuration
9+
```bash
10+
git clone https://github.com/metabase/metabase-embedding-sdk-workshop-sample.git
11+
cd metabase-embedding-sdk-workshop-sample
12+
```
1113

12-
If you are developing a production application, we recommend using TypeScript and enable type-aware lint rules. Check out the [TS template](https://github.com/vitejs/vite/tree/main/packages/create-vite/template-react-ts) to integrate TypeScript and [`typescript-eslint`](https://typescript-eslint.io) in your project.
14+
2. Start Docker on your machine. This is used to setup a clean Metabase instance to try out the SDK. If you don't have Docker installed, you can download Docker Desktop below:
15+
16+
- [Download for macOS](https://docs.docker.com/desktop/setup/install/mac-install/)
17+
- [Download for Windows](https://docs.docker.com/desktop/setup/install/windows-install/)
18+
- [Download for Linux](https://docs.docker.com/desktop/setup/install/linux/)
19+
20+
For macOS, if the CLI doesn't detect Docker running on your system, you may need to add Docker to your path. Add this export statement to your shell profile file (e.g. `~/.zshrc` or `~/.bashrc`):
21+
22+
```bash
23+
export PATH="$PATH:/Applications/Docker.app/Contents/Resources/bin/"
24+
```
25+
26+
3. Install the Embedded Analytics SDK:
27+
28+
```bash
29+
npm install @metabase/embedding-sdk-react@53-stable
30+
```
31+
32+
4. Start the frontend. You can view the app at [http://localhost:5173](http://localhost:5173). The app has some hints and helpful links to get you started.
33+
34+
```bash
35+
npm run dev
36+
```
37+
38+
5. In a new terminal, run the quickstart command:
39+
40+
```bash
41+
npx @metabase/embedding-sdk-react start
42+
```
43+
44+
6. Follow the instructions in your terminal to complete the setup. You can navigate the prompts with the arrow keys and `Enter` to select an option.
45+
7. Follow the instructions in your terminal to complete the setup. You can navigate the prompts with the arrow keys and `Enter` to select an option.
46+
47+
For the simplest setup:
48+
49+
- Pick any email address, doesn't have to be real (e.g., `[email protected]`).
50+
- Say no to "Dod you have a database to connect to?" The tool will use sample data.
51+
- Say no to "Do you want to set up a Pro license?"
52+
- Hit enter to save the example React components to `./src/components/metabase`.
53+
54+
8. Import the `<AnalyticsPage />` demo component into `App.jsx`, like so:
55+
56+
```diff
57+
+ import { AnalyticsPage } from "./components/metabase";
58+
59+
export default function App() {
60+
return (
61+
<DemoLayout>
62+
<div className="min-h-[650px] w-full max-w-[1200px] bg-white rounded-xl">
63+
+ <AnalyticsPage />
64+
</div>
65+
</DemoLayout>
66+
);
67+
}
68+
```
69+
70+
You can then play around with the interactive dashboard!
71+
72+
## What next?
73+
74+
- The interactive dashboard is added by default in `analytics-dashboard.jsx`.
75+
- Try rendering an [interactive question](https://www.metabase.com/docs/latest/embedding/sdk/questions) instead.
76+
- You can update the theme via `MetabaseProvider` in `embedding-provider.jsx`
77+
78+
## There should be one, and only one, `MetabaseProvider` in your app
79+
80+
Just like other React providers, do NOT add `MetabaseProvider` to more than one page, or more than one component. Instead, you should put `MetabaseProvider` in either a) the root of your app (e.g., `App.jsx`) or b) your root provider (if you have one).
81+
82+
## CLI is not intended for production use
83+
84+
The CLI spins up a Metabase and helps you get an embedded dashboard in your app. This setup with API keys won’t work in production; it’s only intended for you to quickly try out the SDK on your local machine. A production setup requires a Pro/Enterprise license, and SSO with JWT.
85+
86+
## Resources
87+
88+
- [SDK Documentation](https://www.metabase.com/docs/latest/embedding/sdk/introduction)
89+
- [Quickstart with CLI](https://www.metabase.com/docs/latest/embedding/sdk/quickstart-cli)
90+
- [Quickstart using your own Metabase instance](https://www.metabase.com/docs/latest/embedding/sdk/quickstart)

0 commit comments

Comments
 (0)