recator placement of code

This commit is contained in:
2026-02-17 11:46:57 -06:00
parent 31f8c368d9
commit 23c000fa7f
77 changed files with 4528 additions and 2697 deletions

View File

@@ -47,4 +47,4 @@ function checkRouteSpecs(baseDir) {
}
// Adjust paths based on your structure
checkRouteSpecs("backend/src");
checkRouteSpecs("backend");

1
scripts/zipApp.ps1 Normal file
View File

@@ -0,0 +1 @@
Write-Host "hello world"

20
scripts/zipApp.sh Normal file
View File

@@ -0,0 +1,20 @@
#!/bin/sh
# zipApp.sh -- create timestamped archive of the app
# set -e
# SRC="/workspace/lst_v3"
# DEST="/workspace/lst_v3/builds"
# TS=$(date +%Y%m%d_%H%M)
# mkdir -p "$DEST"
# zip -r "$DEST/lst_v3_$TS.zip" "$SRC" \
# -x "$SRC/.git/*" \
# -x "$SRC/node_modules/*" \
# -x "$SRC/.env" \
# -x "$SRC/logs/*" \
# -x "$SRC/zips/*"
# echo "Archive created at $DEST/lst_v3_$TS.zip"
echo "hello world