Initial commit

This commit is contained in:
Trey
2026-03-20 18:49:48 -05:00
commit dfa1697fef
197 changed files with 29298 additions and 0 deletions

16
web/docker-entrypoint.sh Normal file
View File

@@ -0,0 +1,16 @@
#!/bin/sh
set -e
echo "==> Checking node_modules..."
# If node_modules is empty/missing, copy from cache
if [ ! -d "node_modules/react" ]; then
echo "==> Initializing node_modules from cache..."
cp -r /node_modules_cache/* node_modules/ 2>/dev/null || cp -r /node_modules_cache/. node_modules/
echo "==> Done"
else
echo "==> node_modules already initialized"
fi
echo "==> Starting Feeld Web..."
exec "$@"