radamesp

4 - testing.py

May 11th, 2022 (edited)
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.31 KB | None | 0 0
  1. from.settings import *
  2. DEBUG = True
  3. # Crie a secret key para seu ambiente de teste
  4. SECRET_KEY = 'ixb6fh&#ts=&bt$au%pgp_62-!8dw2j==j)d^3-j$!z(@*m+-h'
  5. ALLOWED_HOSTS = ['127.0.0.1']
  6. DATABASES = {
  7.     'default': {
  8.     'ENGINE': 'django.db.backends.sqlite3',
  9.     'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
  10.     }
  11. }
Add Comment
Please, Sign In to add comment