1#
2# BitBake Toaster Implementation
3#
4# Copyright (C) 2016        Intel Corporation
5#
6# SPDX-License-Identifier: GPL-2.0-only
7#
8
9# Django settings for Toaster project.
10
11# Settings overlay to use for running tests
12# DJANGO_SETTINGS_MODULE=toastermain.settings-test
13
14from toastermain.settings import *
15
16DEBUG = True
17TEMPLATE_DEBUG = DEBUG
18
19DATABASES = {
20    'default': {
21        'ENGINE': 'django.db.backends.sqlite3',
22        'NAME': '/tmp/toaster-test-db.sqlite',
23        'TEST': {
24            'ENGINE': 'django.db.backends.sqlite3',
25            'NAME': '/tmp/toaster-test-db.sqlite',
26        }
27    }
28}
29