sfirke commented on code in PR #28221: URL: https://github.com/apache/superset/pull/28221#discussion_r1581064713
########## docs/docs/installation/pypi.mdx: ########## @@ -129,21 +121,33 @@ First, start by installing `apache-superset`: pip install apache-superset ``` -Then, you need to initialize the database: +Superset configurations are stored in a file. One of these configurations, a `SECRET_KEY`, is required for the application to start. Create your config file: +``` +touch superset/superset_config.py +``` +And make this file findable by adding its path as an environment variable: +``` +export SUPERSET_CONFIG_PATH=superset/superset_config.py Review Comment: Good suggestion, I've implemented with a link to StackOverflow explaining how to do this. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org For additional commands, e-mail: notifications-h...@superset.apache.org