orynxml-ai / start.sh
Speedofmastery's picture
Upload folder using huggingface_hub
2f28b62 verified
raw
history blame contribute delete
551 Bytes
#!/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