First commit for bicorder-app

This commit is contained in:
Nathan Schneider
2025-11-25 13:20:21 -05:00
parent 3a55d3dbb9
commit b541f6049e
24 changed files with 8883 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
#!/bin/bash
# Update the diagnostic app when bicorder.json changes
echo "Checking for bicorder.json..."
if [ ! -f "../bicorder.json" ]; then
echo "Error: ../bicorder.json not found!"
exit 1
fi
echo "Building app with latest bicorder.json..."
npm run build
if [ $? -eq 0 ]; then
echo ""
echo "✓ Build successful!"
echo "The app has been updated with the latest bicorder.json structure."
echo "Deploy the 'dist' folder to your web server or run 'npm run preview' to test."
else
echo ""
echo "✗ Build failed. Please check the errors above."
exit 1
fi