Spaces:
Paused
Paused
Commit
·
48e37ca
1
Parent(s):
25b669a
Auto-commit: start.sh updated
Browse files
start.sh
CHANGED
|
@@ -13,21 +13,12 @@ chmod +x app.py
|
|
| 13 |
# Check Python and show system info
|
| 14 |
echo "� System Information:"
|
| 15 |
echo "Python version: $(python3 --version)"
|
| 16 |
-
echo "Working directory: $(pwd)"
|
| 17 |
echo "User: $(whoami)"
|
| 18 |
-
if not os.path.exists(db_path):
|
| 19 |
-
print('Creating database...')
|
| 20 |
-
conn = sqlite3.connect(db_path)
|
| 21 |
-
conn.close()
|
| 22 |
-
print('Database created successfully!')
|
| 23 |
-
"
|
| 24 |
|
| 25 |
-
#
|
| 26 |
-
echo "
|
| 27 |
-
|
| 28 |
-
echo "Working directory: $(pwd)"
|
| 29 |
-
echo "User: $(whoami)"
|
| 30 |
-
echo "Available memory: $(free -h | grep '^Mem:' | awk '{print $2}')"
|
| 31 |
|
| 32 |
# Start the application
|
| 33 |
echo "🚀 Launching OpenManus Platform..."
|
|
|
|
| 13 |
# Check Python and show system info
|
| 14 |
echo "� System Information:"
|
| 15 |
echo "Python version: $(python3 --version)"
|
| 16 |
+
echo "Working directory: $(pwd)"
|
| 17 |
echo "User: $(whoami)"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
|
| 19 |
+
# List files to verify everything is in place
|
| 20 |
+
echo "� Files in directory:"
|
| 21 |
+
ls -la
|
|
|
|
|
|
|
|
|
|
| 22 |
|
| 23 |
# Start the application
|
| 24 |
echo "🚀 Launching OpenManus Platform..."
|