Spaces:
Running
Running
File size: 316 Bytes
e91056e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#!/bin/bash
set -e
# Display environment information
echo "=== Environment Information ==="
python --version
pip --version
echo "Current directory: $(pwd)"
echo "Files in current directory:"
ls -la
echo "=== End Environment Information ==="
# Start the application
echo "Starting the application..."
python app.py |