dev.py 609 B

123456789101112131415161718192021222324252627282930
  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:1996'
  20. NER_SERVER_URI = 'http://localhost:2020'
  21. # selenium-firefox instance
  22. BROWSER = 'Bangladesh'