feat: add toggleable SFTP panel

This commit is contained in:
2026-06-19 19:29:44 +01:00
parent e43c4a7f2a
commit d81136fe5e
4 changed files with 40 additions and 14 deletions
+10 -1
View File
@@ -12,5 +12,14 @@ else
source venv/bin/activate
fi
cd frontend && npm run build && cd ..
echo "Building frontend..."
(
cd frontend
if [ ! -d "node_modules" ]; then
echo "Installing frontend dependencies..."
npm install
fi
npm run build
)
exec gunicorn --bind 0.0.0.0:5000 --workers 1 --worker-class geventwebsocket.gunicorn.workers.GeventWebSocketWorker app:app --log-level info