Spaces:
Paused
Paused
File size: 551 Bytes
cdf112e 25b669a cdf112e 25b669a 206d31e 25b669a cdf112e 48e37ca cdf112e c79205c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
#!/bin/bash
# OpenManus Platform - Linux Startup Script
echo "🐧 Starting OpenManus Platform on Linux..."
# Create necessary directories
mkdir -p logs data cache
# Set proper permissions
chmod +x app.py
# Check Python and show system info
echo "� System Information:"
echo "Python version: $(python3 --version)"
echo "Working directory: $(pwd)"
echo "User: $(whoami)"
# List files to verify everything is in place
echo "� Files in directory:"
ls -la
# Start the application
echo "🚀 Launching OpenManus Platform..."
exec python3 app.py
|