2f55f898ed
- Implemented Spotify OAuth handling in spotify_client_manager.py to ensure valid access tokens for users. - Created helper functions in spotify_helper.py for refreshing tokens and retrieving user information. - Developed manage_spotify.html template for connecting and managing Spotify accounts, displaying connection status and token information. - Added logging for token management processes to enhance debugging and monitoring. - Introduced a debug client for Spotify interactions to facilitate easier testing and development.
23 lines
744 B
Bash
23 lines
744 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# Start the Flask application with better error reporting
|
|
echo "Starting Flask application..."
|
|
export PYTHONUNBUFFERED=1
|
|
export FLASK_DEBUG=1
|
|
echo "Flask environment: $FLASK_ENV"
|
|
echo "Database URI: $SQLALCHEMY_DATABASE_URI"
|
|
echo "Database path: $DATABASE_PATH"
|
|
echo "Available environment variables:"
|
|
env | grep -v PASSWORD | grep -v SECRET
|
|
|
|
# Use flask run with explicit reload for better hot reloading
|
|
export PYTHONFAULTHANDLER=1
|
|
export PYTHONDONTWRITEBYTECODE=1
|
|
|
|
echo "Starting Flask development server with hot reload..."
|
|
exec python -m flask run --host=0.0.0.0 --port=5000 --reload --debug || {
|
|
echo "Flask application failed to start. Error details:"
|
|
python -c "import traceback; traceback.print_exc()"
|
|
exit 1
|
|
} |