from .base import *

# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True

ALLOWED_HOSTS = []

WSGI_APPLICATION = 'review_automation.wsgi.dev.application'

# Database

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.mysql',
        'NAME': 'review_automation',
        'USER': 'root',
        'PASSWORD': 'sad2002S1',
        'HOST': 'localhost',
        'PORT': '3306',
    }
}

# Host URLS

HOST_URI = "http://127.0.0.1:8000"
NLU_SERVER_URI = 'http://localhost:5005'