dev.py 516 B

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