Advertisement
Guest User

Untitled

a guest
Mar 4th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.70 KB | None | 0 0
  1. NADA_USERNAME = 'WstStSTr_tst1'
  2. NADA_PASSWORD = 'WstStSTr_tst1'
  3. BLACK_BOOK_USERNAME = 'shulzj'
  4. BLACK_BOOK_PASSWORD = 'Streamline'
  5.  
  6. SECRET_KEY = 'gm@^gg(aa%#rdkla^rt%^2cr7*8pgf%$9^yxv-c2_sc@8u%txx'
  7. DATABASES = {
  8.     'default': {
  9.         'ENGINE': 'django.db.backends.postgresql_psycopg2',
  10.         'NAME': 'swa',
  11.         'USER': 'postgres',
  12.         'HOST': '0.0.0.0',
  13.         'PORT': 5432,
  14.         'PASSWORD': 'my_pg_swa_password',
  15.     }
  16. }
  17. DEBUG = True
  18. HOSTNAME = '127.0.0.1'
  19. PORT = 8000
  20. ALLOWED_HOSTS = [
  21.     '0.0.0.0', '127.0.0.1', '172.20.24.56', '10.0.2.2', 'localhost',
  22.     'swaas.local', '.swaas.local'
  23. ]
  24. DEFAULT_FILE_STORAGE = 'swa.storages.FileSystemMediaStorage'
  25. EMAIL_IMPORT = False
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement