quickstart-apache-superset
quickstart-apache-superset copied to clipboard
Changing superset_config.py
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/ ?
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.
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
Is there a clean way of doing this that doesn't overwrite the existing settings in superset_config.py?