radamesp

3 - development.py

May 11th, 2022 (edited)
295
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.43 KB | None | 0 0
  1. #
  2. # medicSearchAdmin/settings/development.py
  3. from.settings import *
  4. DEBUG = True
  5. # Crie a secret key para seu ambiente de desenvolvimento
  6. SECRET_KEY = 'ixb62ha#ts=ab4t2u%p1_62-!5w2j==j6d^3-j$!z(@*m+-h'
  7. # TambΓ©m pode ficar em branco com colchetes vazios []
  8. ALLOWED_HOSTS = ['127.0.0.1']
  9.  
  10. DATABASES = {
  11.     'default': {
  12.     'ENGINE': 'django.db.backends.sqlite3',
  13.     'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
  14.     }
  15. }
Add Comment
Please, Sign In to add comment