Spaces:
Running
Running
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 |