ThunderRoar commented on code in PR #36348: URL: https://github.com/apache/superset/pull/36348#discussion_r2575014111
########## docs/docs/configuration/databases.mdx: ########## @@ -359,6 +360,20 @@ uses the default user without a password (and doesn't encrypt the connection): clickhousedb://localhost/default ``` +#### Cloudflare D1 + +To use Cloudflare D1 with superset, install the [superset-engine-d1](https://github.com/sqlalchemy-cf-d1/superset-engine-d1) library. + +``` +pip install superset-engine-d1 +``` + +The expected connection string is formatted as follows: + +``` +d1://{cloudflare_account_id}:{cloudflare_api_token}@{cloudflare_d1_database_id} +``` Review Comment: Please find the referred packages and its respective code below: Package [superset-engine-d1](https://pypi.org/project/superset-engine-d1/) Repository [sqlalchemy-cf-d1/superset-engine-d1](https://github.com/sqlalchemy-cf-d1/superset-engine-d1) Side note: You can also find the code for the relevant dependencies with the [organization](https://github.com/sqlalchemy-cf-d1). -- 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]
