import sys
import os

# Add the project directory to the sys.path
project_home = '/home/pucovski/_app.pucovski.com/my_app/daily-quote-bot'
if project_home not in sys.path:
    sys.path = [project_home] + sys.path

def application(environ, start_response):
    status = '200 OK'
    output = b'Telegram bot running daily task scheduler.'
    
    response_headers = [('Content-type', 'text/plain'), ('Content-Length', str(len(output)))]
    start_response(status, response_headers)
    return [output]
