From 4aa0088cb07bbdd07f890f655b3e857016cffab6 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Mon, 13 Dec 2021 20:51:33 -0500 Subject: [PATCH] [+] Copy packed data in deploy script --- deploy.sh | 2 ++ src/main.py | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/deploy.sh b/deploy.sh index c0a91ff..c0f8903 100644 --- a/deploy.sh +++ b/deploy.sh @@ -3,6 +3,8 @@ # abort on errors set -e +cp ../data/packed/processed.7z ./src/dist/processed-data.7z + # navigate into the build output directory cd src/dist diff --git a/src/main.py b/src/main.py index 290df72..3b9c1fa 100644 --- a/src/main.py +++ b/src/main.py @@ -73,7 +73,9 @@ if __name__ == '__main__': # Generate all visualization reports and graphs report_all() - #################### + # Write HTML for deploying to GitHub Pages + write_html() + # Serve webpage serve_report()