Skip to content

Commit

Permalink
Added the option to download files using AWS command line tools when …
Browse files Browse the repository at this point in the history
…an AWS bucket exists for a given project.
  • Loading branch information
Chrystinne committed Sep 25, 2023
1 parent 1f092bb commit 76d5213
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -423,6 +423,12 @@ <h5>Access the files</h5>
<pre class="shell-command">wget -r -N -c -np{% if project.access_policy %} --user {{ user }} --ask-password{% endif %} {{ bulk_url_prefix }}{% url 'serve_published_project_file' project.slug project.version '' %}</pre>
</li>
{% endif %}
{% if aws_bucket_exists %}
<li>
Download the files using AWS command line tools:
<pre class="shell-command">aws s3 sync s3://{{ s3_bucket_name }} DESTINATION</pre>
</li>
{% endif %}

</ul>
{# ZIP END #}
Expand Down

0 comments on commit 76d5213

Please sign in to comment.