vsham20

Untitled

Jan 19th, 2016
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. # Database
  2. # https://docs.djangoproject.com/en/1.8/ref/settings/#databases
  3.  
  4. DEBUG = True
  5.  
  6. DATABASES = {
  7. 'default': {
  8. 'ENGINE': 'django.db.backends.postgresql_psycopg2',
  9. 'NAME': "postgres",
  10. # 'USER': "vaishali",
  11. #'PASSWORD': "",
  12. # 'HOST': "localhost",
  13. # 'PORT': "5432",
  14. }
  15. }
  16.  
  17. # E-Mail Settings
  18. EMAIL_HOST = 'localhost'
  19. EMAIL_PORT = 1025
  20. EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
  21.  
  22. ACCOUNT_DEFAULT_HTTP_PROTOCOL = 'http'
Add Comment
Please, Sign In to add comment