mirror of
git://git.yoctoproject.org/poky
synced 2026-08-22 03:58:03 +00:00
With the introduction of SPDX-License-Identifier headers, we don't need a ton of header boilerplate in every file. Simplify the files and rely on the top level for the full licence text. (Bitbake rev: 695d84397b68cc003186e22f395caa378b06bc75) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
49 lines
1.3 KiB
Python
49 lines
1.3 KiB
Python
#
|
|
# ex:ts=4:sw=4:sts=4:et
|
|
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
#
|
|
# BitBake Toaster Implementation
|
|
#
|
|
# Copyright (C) 2016 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
|
|
# See Django documentation for more information about deployment
|
|
# https://docs.djangoproject.com/en/1.8/howto/deployment/checklist/
|
|
|
|
# Toaster production settings example overlay
|
|
# To use this copy this example to "settings_production.py" and set in your
|
|
# environment DJANGO_SETTINGS_MODULE=toastermain.settings_production
|
|
# This can be permanently set in a new .wsgi file
|
|
|
|
from toastermain.settings import * # NOQA
|
|
|
|
# Set this value!
|
|
SECRET_KEY = None
|
|
|
|
# Switch off any debugging
|
|
DEBUG = True
|
|
TEMPLATE_DEBUG = DEBUG
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.mysql',
|
|
'NAME': 'toaster_data',
|
|
'USER': 'toaster',
|
|
'PASSWORD': 'yourpasswordhere',
|
|
'HOST': '127.0.0.1',
|
|
'PORT': '3306',
|
|
}
|
|
}
|
|
|
|
# Location where static files will be placed by "manage.py collectstatic"
|
|
STATIC_ROOT = '/var/www/static-toaster/'
|
|
|
|
# URL prefix for static files.
|
|
STATIC_URL = '/static-toaster/'
|
|
|
|
# Hosts that Django will serve
|
|
# https://docs.djangoproject.com/en/1.8/ref/settings/#std:setting-ALLOWED_HOSTS
|
|
ALLOWED_HOSTS = ['toaster-example.example.com']
|