quickstart-apache-superset icon indicating copy to clipboard operation
quickstart-apache-superset copied to clipboard

Changing superset_config.py

Open israjsingh opened this issue 3 years ago • 3 comments

I want to change some configs like adding the Mapbox key and SMTP details. How can I do it, given that I am using https://aws.amazon.com/quickstart/architecture/apache-superset/ ?

israjsingh avatar Aug 24 '22 16:08 israjsingh

Such superset_config.py file is inherited from community, you can pull the docker image and override with your own one, then pack a new image and replace image url in CloudFormation template.

yike5460 avatar Aug 25 '22 15:08 yike5460

An example of how to do this:

FROM public.ecr.aws/p9r6s5p7/superset:v2.0.0

USER root

RUN pip install Authlib

COPY superset_config.py /app/pythonpath

USER superset

philMarius avatar Sep 06 '22 15:09 philMarius

Is there a clean way of doing this that doesn't overwrite the existing settings in superset_config.py?

sathvik-k avatar Aug 24 '23 23:08 sathvik-k