github-actions[bot]
Deploy ec2e21219b6fdb43509eed30183345f34c27df99 to Hugging Face Space
b0fab0f
Raw
History Blame Contribute Delete
413 Bytes
#!/bin/bash
# Startup script for the floor visualizer backend.
# Run once after cloning the repo on the server.
set -e
echo "==> Installing dependencies..."
pip install --no-cache-dir -r requirements-gpu-cu126.txt
echo "==> Creating data directories..."
mkdir -p data/uploads data/jobs
echo "==> Starting server..."
VISUALIZER_CONFIG=visualizer.gpu.toml uvicorn app:app --host 0.0.0.0 --port 8002 --workers 1