Spaces:
Runtime error
Runtime error
| @echo off | |
| echo ============================================ | |
| echo Wellfound AI - Excel Data Completion Tool | |
| echo ============================================ | |
| echo. | |
| REM Check Python | |
| python --version >nul 2>&1 | |
| if %errorlevel% neq 0 ( | |
| echo [ERROR] Python not found. Please install Python 3.9+ | |
| pause | |
| exit /b 1 | |
| ) | |
| REM Install dependencies | |
| echo [1/3] Installing dependencies... | |
| pip install -r requirements.txt -q | |
| if %errorlevel% neq 0 ( | |
| echo [ERROR] Failed to install dependencies | |
| pause | |
| exit /b 1 | |
| ) | |
| REM Install Playwright browsers | |
| echo [2/3] Installing Playwright browsers... | |
| playwright install chromium --quiet 2>nul | |
| if %errorlevel% neq 0 ( | |
| echo [WARNING] Playwright browser install had issues. Run manually: playwright install chromium | |
| ) | |
| REM Start server | |
| echo [3/3] Starting server... | |
| echo. | |
| echo Server running at: http://localhost:7860 | |
| echo Press Ctrl+C to stop | |
| echo. | |
| python app.py | |
| pause | |