Advertisement
Guest User

Untitled

a guest
Aug 6th, 2017
595
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.98 KB | None | 0 0
  1. ADMINS = (
  2. #     ('adriel', 'ferrum26@gmail.com'),
  3. )
  4.  
  5. EMAIL_PORT = "1025"
  6.  
  7. DATABASES = {
  8.     'default': {
  9.         'ENGINE': 'django.db.backends.postgresql_psycopg2', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
  10.         'NAME': 'couchconnect',                 # Or path to database file if using sqlite3.
  11.         'USER': 'couchconnect',                             # Not used with sqlite3.
  12.         'PASSWORD': 'couchconnect',                         # Not used with sqlite3.
  13.         'HOST': 'localhost',                             # Set to empty string for localhost. Not used with sqlite3.
  14.         'PORT': '',                             # Set to empty string for default. Not used with sqlite3.
  15.     }
  16. }
  17.  
  18. TRIBUNE_SHOWCARD_FTP = "ftp.tmstv.com"
  19. TRIBUNE_SHOWCARD_FTP_USER = "gal866np"
  20. TRIBUNE_SHOWCARD_FTP_PASSWORD = "UZR372kb"
  21.  
  22. TRIBUNE_SCHEDULE_FTP = "ftp.tvdata.com"
  23. TRIBUNE_SCHEDULE_FTP_USER = "nylicga"
  24. TRIBUNE_SCHEDULE_FTP_PASSWORD = "248md972"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement