Spaces:
Sleeping
Sleeping
File size: 435 Bytes
a1c0952 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#!/bin/bash -e
aws s3 sync \
--cache-control="max-age=86400, public" \
--exclude="*" \
--include="*.txt" \
--content-type="text/plain; charset=utf-8" \
./out/ s3://japanese-addresses-v2.geoloniamaps.com/
aws s3 sync \
--cache-control="max-age=86400, public" \
--exclude="*" \
--include="*.json" \
--content-type="application/json; charset=utf-8" \
./out/ s3://japanese-addresses-v2.geoloniamaps.com/
|