For more information about the data release see our blog post.
python3 -m venv .env
. .env/bin/activate
pip install -r scripts/requirements.txt
export SIGNED_URL="<full SAS url to blob store can be read only>"
python3 build_readme_and_index_html.py
export SIGNED_URL="<full SAS url to blob store read and write>"
python3 build_readme_and_index_html.py --deploy
Ensure that the variable SIGNED_URL
has been configured/set on the build. It needs to be a full Shared Access Signature url to the blob container. It needs full CRUD access.
The build should only deploy the assets to the blob container on push to master
.