4

I have installed Apache Superset locally using Docker Compose. All of the pre-loaded examples were helpful at first, but I am wondering if there is a configuration setting to skip loading these examples. I know that I could delete each example chart and dashboard individually, but I'm hoping there is a configuration setting somewhere that would disable loading examples. I've reviewed the documentation, but haven't seen such a setting.

https://superset.apache.org/docs/installation/configuring-superset

TylerH
  • 20,799
  • 66
  • 75
  • 101
CurtLH
  • 2,329
  • 4
  • 41
  • 64

1 Answers1

8

You can disable the loading example by removing SUPERSET_LOAD_EXAMPLES=yes in the env file located at docker/.env. The environment is loaded from the docker/.env file for docker-compose.

 superset:
    env_file: docker/.env
    image: *superset-image
    container_name: superset_app
    command: ["/app/docker/docker-bootstrap.sh", "app"]
    restart: unless-stopped
    ports:
      - 8088:8088
jagamts1
  • 223
  • 2
  • 6