#!/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