from .settings import *
import os
from decouple import config

DEBUG = False
ALLOWED_HOSTS = ['*']  # Update with your domain

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.mysql',
        'NAME': config('DB_NAME'),
        'USER': config('DB_USER'),
        'PASSWORD': config('DB_PASSWORD'),
        'HOST': 'localhost',
        'PORT': '3306',
    }
}

STATIC_ROOT = BASE_DIR / 'staticfiles'

