Guest User

Untitled

a guest
May 27th, 2018
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. # Django settings for TestProject project.
  2.  
  3. DEBUG = True
  4. TEMPLATE_DEBUG = DEBUG
  5.  
  6. ADMINS = (
  7. # ('Your Name', 'your_email@example.com'),
  8. )
  9.  
  10. MANAGERS = ADMINS
  11.  
  12.  
  13. DATABASES = {
  14. 'default': {
  15. 'ENGINE': 'django.db.backends.sqlite3',
  16. 'NAME': 'TestProject.db',
  17. }
  18. }
  19.  
  20. EXAMPLE_DATABASES = {
  21. 'default': {
  22. 'ENGINE': 'django.db.backends.', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
  23. 'NAME': '', # Or path to database file if using sqlite3.
  24. 'USER': '', # Not used with sqlite3.
  25. 'PASSWORD': '', # Not used with sqlite3.
  26. 'HOST': '', # Set to empty string for localhost. Not used with sqlite3.
  27. 'PORT': '', # Set to empty string for default. Not used with sqlite3.
  28. }
  29. }
Add Comment
Please, Sign In to add comment