poky/bitbake/lib/toaster/toastermain/settings_production_example.py
Richard Purdie 9501864db8 bitbake: bitbake: Strip old editor directives from file headers
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>
2019-05-04 10:44:10 +01:00

46 lines
1.2 KiB
Python

#
# 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']