From c6abf2eeb058288c615dc2e8e83ea9e2ac3d2552 Mon Sep 17 00:00:00 2001 From: maeries <8ij4neqiu@mozmail.com> Date: Tue, 18 Mar 2025 18:59:12 +0100 Subject: [PATCH] moved page to /public --- main.py | 2 +- index.html => public/index.html | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename index.html => public/index.html (100%) diff --git a/main.py b/main.py index 5bae51c..63968e9 100644 --- a/main.py +++ b/main.py @@ -906,7 +906,7 @@ def main(): parser = argparse.ArgumentParser(description='Process competition results and generate Elo rankings website') parser.add_argument('--input', default='csv_files', help='Directory containing CSV result files') - parser.add_argument('--output', default='elo_website', help='Output directory for the website') + parser.add_argument('--output', default='public/elo_website', help='Output directory for the website') args = parser.parse_args() diff --git a/index.html b/public/index.html similarity index 100% rename from index.html rename to public/index.html -- GitLab