dev.py 460 B

12345678910111213141516171819202122232425
  1. from .base import *
  2. # SECURITY WARNING: don't run with debug turned on in production!
  3. DEBUG = True
  4. ALLOWED_HOSTS = []
  5. # Database
  6. DATABASES = {
  7. 'default': {
  8. 'ENGINE': 'django.db.backends.mysql',
  9. 'NAME': 'review_automation',
  10. 'USER': 'bytetrek',
  11. 'PASSWORD': 'sad2002S1',
  12. 'HOST': 'localhost',
  13. 'PORT': '3306',
  14. }
  15. }
  16. # Host URLS
  17. HOST_URI = "http://127.0.0.1:8000"
  18. NLU_SERVER_URI = 'http://10.0.0.33:5005'