import os


class Config:
    SECRET_KEY = os.environ.get('SECRET_KEY', 'bd79c27f931ae3c150b19a3ed8b3d849f105bb75559be08162188e3e95fc6069')
    DB_HOST = 'localhost'
    DB_USER = 'sprioukr_prescription'
    DB_PASSWORD = 'HKg2C!EgVV0{;yUy'
    DB_NAME = 'sprioukr_prescription'
    ASSETS_PATH = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'static', 'assets')

    DOCTOR_INFO = {
        'name': 'Dr. Subash Mendis',
        'credentials': [
            'MBBS',
            'MSc Human Nutrition',
            'Dip IBLM- Certified Lifestyle',
            'Medicine Physician',
        ],
    }

    ABDOMINAL_BOILERPLATE = (
        "Consultant Radiologist,\n"
        "\n"
        "Dear Sir/Madam,\n"
        "\n"
        "Please be kind enough to arrange an ultrasound scan of the Abdomen & "
        "Pelvis for this patient to exclude/ know the extent of Fatty Liver Disease.\n"
        "\n"
        "Thank you."
    )
