fertek commented on issue #17049: URL: https://github.com/apache/superset/issues/17049#issuecomment-3388938324
@driucorado I use this bash script `import_dashboards.sh`: ``` #!/bin/bash set -e ZIP_FILE="$HOME/path_to/assets.zip" echo "Importing dashboards from $ZIP_FILE..." export FLASK_APP=superset SUPERSET_CONFIG_PATH=./superset_config.py uv run superset import-dashboards --path "$ZIP_FILE" --username admin echo "Import completed successfully!" ``` -- 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]
