hsein-bitar commented on issue #35328:
URL: https://github.com/apache/superset/issues/35328#issuecomment-3348043252
## Config
`.env-local`
SUPERSET_ENV=production
`docker/pythonpath_dev/superset_config.py`
SQLALCHEMY_ENGINE_OPTIONS = {
"pool_size": 20,
"max_overflow": 40,
"pool_timeout": 60,
"pool_recycle": 1800,
"pool_pre_ping": True,
}
FEATURE_FLAGS = {
"ALERT_REPORTS": True,
"EMBEDDABLE_CHARTS": True,
"EMBEDDED_SUPERSET": True
}
ENABLE_GUEST_TOKEN = True
GUEST_TOKEN_JWT_AUDIENCE="superset"
ALLOWED_DOMAINS = [ "https://mytestdomain.com"]
ALLOWED_EMBEDDING_DOMAINS = [ "https://mytestdomain.com"]
GUEST_TOKEN_JWT_SECRET="D2DP5O7dBUex3OBs6pVEG7i_RxGAmwi8SiGr6TRUP3M"
GUEST_ROLE_NAME = "Public"
GUEST_TOKEN_JWT_EXP_SECONDS = 604800
EMBEDDED_SUPERSET = True
SESSION_COOKIE_SAMESITE = "None"
SESSION_COOKIE_SECURE = False
SESSION_COOKIE_HTTPONLY = False
WTF_CSRF_ENABLED = False
ENABLE_UI_THEME_ADMINISTRATION = True
ENABLE_TEMPLATE_PROCESSING = True
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]