15 lines
292 B
Python
15 lines
292 B
Python
from back_latienda.settings.base import *
|
|
|
|
# SECURITY WARNING: don't run with debug turned on in production!
|
|
DEBUG = False
|
|
|
|
ALLOWED_HOSTS = ['127.0.0.1:8000', 'localhost']
|
|
|
|
# Database
|
|
# https://docs.djangoproject.com/en/2.2/ref/settings/#databases
|
|
|
|
# Databases configuration
|
|
DATABASES = {
|
|
|
|
}
|