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': 'bt_review_bot',
        'USER': 'root',
        'PASSWORD': 'sad2002S1',
        'HOST': 'localhost',
        'PORT': '3306',
    }
}

# Host URLS

HOST_URI = "http://localhost:8000"
NLU_SERVER_URI = 'http://localhost:1996'
NER_SERVER_URI = 'http://localhost:2020'
BROWSER_URI = 'http://localhost:2021'

# selenium-firefox instance

BROWSER = 'Bangladesh'