Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. DATABASES = {
  2. 'default': {
  3. 'ENGINE': 'django.db.backends.postgresql',
  4. 'NAME': 'db_name', #created at the time of postgres installation
  5. 'USER': 'postgres',
  6. 'PASSWORD': 'your_password', #created at the time of password setup
  7. 'HOST': 'localhost',
  8. 'PORT': '5432',
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement