myheats

Live heats, scoring and leaderboard for sport events
git clone https://git.in0rdr.ch/myheats.git
Log | Files | Refs | Pull requests | README | LICENSE

commit a8dd2af60f4bd1e12858d6d5d1e817548583b372
parent b724619f018a23476be6ea095e8258ae8dea85bd
Author: Andreas Gruhler <andreas.gruhler@adfinis.com>
Date:   Thu, 19 Sep 2024 13:42:34 +0200

feat(api): create src/frontend subfolder

Diffstat:
Mindex.html | 2+-
Rsrc/App.css -> src/frontend/App.css | 0
Rsrc/App.jsx -> src/frontend/App.jsx | 0
Rsrc/Athletes.jsx -> src/frontend/Athletes.jsx | 0
Rsrc/Auth.jsx -> src/frontend/Auth.jsx | 0
Rsrc/AuthVerify.jsx -> src/frontend/AuthVerify.jsx | 0
Rsrc/Heats.jsx -> src/frontend/Heats.jsx | 0
Rsrc/Leaderboard.jsx -> src/frontend/Leaderboard.jsx | 0
Rsrc/Score.jsx -> src/frontend/Score.jsx | 0
Rsrc/Settings.jsx -> src/frontend/Settings.jsx | 0
Rsrc/Startlist.jsx -> src/frontend/Startlist.jsx | 0
Rsrc/index.css -> src/frontend/index.css | 0
Rsrc/main.jsx -> src/frontend/main.jsx | 0
Rsrc/supabaseClient.js -> src/frontend/supabaseClient.js | 0
Rsrc/utils.js -> src/frontend/utils.js | 0
15 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/index.html b/index.html @@ -15,6 +15,6 @@ <body> <noscript>You need to enable JavaScript to run this app.</noscript> <div id="root"></div> - <script type="module" src="/src/main.jsx"></script> + <script type="module" src="/src/frontend/main.jsx"></script> </body> </html> diff --git a/src/App.css b/src/frontend/App.css diff --git a/src/App.jsx b/src/frontend/App.jsx diff --git a/src/Athletes.jsx b/src/frontend/Athletes.jsx diff --git a/src/Auth.jsx b/src/frontend/Auth.jsx diff --git a/src/AuthVerify.jsx b/src/frontend/AuthVerify.jsx diff --git a/src/Heats.jsx b/src/frontend/Heats.jsx diff --git a/src/Leaderboard.jsx b/src/frontend/Leaderboard.jsx diff --git a/src/Score.jsx b/src/frontend/Score.jsx diff --git a/src/Settings.jsx b/src/frontend/Settings.jsx diff --git a/src/Startlist.jsx b/src/frontend/Startlist.jsx diff --git a/src/index.css b/src/frontend/index.css diff --git a/src/main.jsx b/src/frontend/main.jsx diff --git a/src/supabaseClient.js b/src/frontend/supabaseClient.js diff --git a/src/utils.js b/src/frontend/utils.js