1234567891011121314151617181920212223242526 |
- 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': 'bytetrek',
- 'PASSWORD': 'sad2002S1',
- 'HOST': 'localhost',
- 'PORT': '3306',
- }
- }
- # Host URLS
- HOST_URI = "http://127.0.0.1:8000"
- NLU_SERVER_URI = 'http://10.0.0.33:5005'
|