romeokienzler commented on issue #7763: URL: https://github.com/apache/incubator-superset/issues/7763#issuecomment-673252442
I've got a working version now using the documentation posted above [https://superset.apache.org/security.html#public](https://superset.apache.org/security.html#public ) before executing `docker-compose up` just edit the file ./docker/pythonpath_dev/superset_config.py as described in the link above for me the file then looks like > ... > DATABASE_DIALECT = get_env_variable("DATABASE_DIALECT") > DATABASE_USER = get_env_variable("DATABASE_USER") > DATABASE_PASSWORD = get_env_variable("DATABASE_PASSWORD") > DATABASE_HOST = get_env_variable("DATABASE_HOST") > DATABASE_PORT = get_env_variable("DATABASE_PORT") > DATABASE_DB = get_env_variable("DATABASE_DB") > PUBLIC_ROLE_LIKE_GAMMA = True > > SQLALCHEMY_DATABASE_URI = "%s://%s:%s@%s:%s/%s" % ( > DATABASE_DIALECT, > DATABASE_USER, > DATABASE_PASSWORD, > DATABASE_HOST, > DATABASE_PORT, > DATABASE_DB, > ) > ... Then you can fire `docker-compose up` And yes, you need to add permissions to the "public" role, otherwise the dashboards are not shown ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
