mirror of
https://git.yoctoproject.org/poky
synced 2026-06-16 06:00:02 +00:00
9501864db8
There are much better ways to handle this and most editors shouldn't need this in modern times, drop the noise from the files. Its not consitently applied anyway. (Bitbake rev: 5e43070e3087d09aea2f459b033d035c5ef747d0) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
29 lines
602 B
Python
29 lines
602 B
Python
#
|
|
# BitBake Toaster Implementation
|
|
#
|
|
# Copyright (C) 2016 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
|
|
# Django settings for Toaster project.
|
|
|
|
# Settings overlay to use for running tests
|
|
# DJANGO_SETTINGS_MODULE=toastermain.settings-test
|
|
|
|
from toastermain.settings import *
|
|
|
|
DEBUG = True
|
|
TEMPLATE_DEBUG = DEBUG
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
'NAME': '/tmp/toaster-test-db.sqlite',
|
|
'TEST': {
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
'NAME': '/tmp/toaster-test-db.sqlite',
|
|
}
|
|
}
|
|
}
|