File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -129,9 +129,11 @@ upload: push
129
129
dashboard :
130
130
Rscript scripts/dashboard.R
131
131
132
- update-site :
132
+ sync-reports :
133
133
aws s3 sync s3://forecasting-team-data/2024/reports/ reports/; \
134
- aws s3 sync reports/ s3://forecasting-team-data/2024/reports/; \
134
+ aws s3 sync reports/ s3://forecasting-team-data/2024/reports/
135
+
136
+ update-site : sync-reports
135
137
Rscript -e " suppressPackageStartupMessages(source(here::here('R', 'load_all.R'))); update_site()" > cache/update_site_log.txt
136
138
137
139
netlify :
Original file line number Diff line number Diff line change @@ -37,7 +37,9 @@ Run the pipeline using:
37
37
# Install renv and R dependencies
38
38
make install
39
39
40
- # Pull various data used by the forecasters from the AWS bucket
40
+ # Sync data and forecasts from the AWS bucket
41
+ # - downloads the aux_data/ folder which contains non-public data used by some forecasters
42
+ # - downloads previously generated forecasts, to save recomputing them
41
43
# Requires the AWS CLI to be installed and configured
42
44
# Reference: https://awscli.amazonaws.com/v2/documentation/api/latest/reference/s3/index.html
43
45
# Installation instructions: https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html
@@ -61,7 +63,7 @@ make update_site && make netlify
61
63
make submit-flu
62
64
make submit-covid
63
65
64
- # Push the data to the AWS bucket (requires AWS CLI)
66
+ # Push your forecasts to the AWS bucket (requires AWS CLI)
65
67
make push
66
68
```
67
69
You can’t perform that action at this time.
0 commit comments