#!/usr/bin/python3
import sys
import logging

# Configure logging
logging.basicConfig(stream=sys.stderr)
project_home = '/var/www/html/rr_app'
# Add the application directory to the Python path
import os
if project_home not in sys.path:
    sys.path = [project_home] + sys.path

# Import the Flask application
from app import app as application

# This allows Apache to use the application variable to serve the Flask app 