diff --git a/.gitignore b/.gitignore index 059eb0ef9cc7..95503968db20 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,9 @@ doc/source/_build flwr_logs .cache +# Node.js +node_modules + # Flower Examples examples/**/dataset/** examples/**/dev/*.sh diff --git a/dev/deploy-docs.sh b/dev/deploy-docs.sh index 0d73589f4764..67bacee8ba09 100755 --- a/dev/deploy-docs.sh +++ b/dev/deploy-docs.sh @@ -21,4 +21,4 @@ cd "$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"/../ cd doc make docs cd build/html -aws s3 sync --delete --exclude ".*" --acl public-read --cache-control "no-cache" ./ s3://flower.dev/docs +aws s3 sync --delete --exclude ".*" --exclude "v/*" --acl public-read --cache-control "no-cache" ./ s3://flower.dev/docs