2

I am trying to embed Apache Superset in my react app, currently, I have set it up on my local machine by following https://hub.docker.com/r/apache/superset guide. How can I go about from here, I tried following other tutorials but I don't see embed link option on my dashboard. Also how can I use it in production. picture of my dashboard screen on localhost

Atharane
  • 64
  • 5

1 Answers1

1

In your superset_config.py file, add the following:

FEATURE_FLAGS = {
    "EMBEDDED_SUPERSET": True
}

Then re-run and verify.

tdy
  • 36,675
  • 19
  • 86
  • 83