Spaces:
Running
Running
Upload setup.sh with huggingface_hub
Browse files
setup.sh
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/bash
|
| 2 |
+
|
| 3 |
+
# Setup script for Hugging Face Spaces
|
| 4 |
+
# This installs Playwright browsers in headless mode
|
| 5 |
+
|
| 6 |
+
echo "🚀 Setting up Fagun Browser Automation Testing Agent..."
|
| 7 |
+
|
| 8 |
+
# Install Playwright browsers
|
| 9 |
+
echo "📥 Installing Playwright browsers..."
|
| 10 |
+
playwright install chromium
|
| 11 |
+
playwright install firefox
|
| 12 |
+
|
| 13 |
+
echo "✅ Setup complete!"
|