blob: 61a288864a82a9aa3916c50de4fd3453ba7af872 [file] [log] [blame]
Brad Bishop6e60e8b2018-02-01 10:27:11 -05001#
2# ex:ts=4:sw=4:sts=4:et
3# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
4#
5# BitBake Toaster Implementation
6#
7# Copyright (C) 2016 Intel Corporation
8#
9# This program is free software; you can redistribute it and/or modify
10# it under the terms of the GNU General Public License version 2 as
11# published by the Free Software Foundation.
12#
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License along
19# with this program; if not, write to the Free Software Foundation, Inc.,
20# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21
22# See Django documentation for more information about deployment
23# https://docs.djangoproject.com/en/1.8/howto/deployment/checklist/
24
25# Toaster production settings example overlay
26# To use this copy this example to "settings_production.py" and set in your
27# environment DJANGO_SETTINGS_MODULE=toastermain.settings_production
28# This can be permanently set in a new .wsgi file
29
30from toastermain.settings import * # NOQA
31
32# Set this value!
33SECRET_KEY = None
34
35# Switch off any debugging
36DEBUG = True
37TEMPLATE_DEBUG = DEBUG
38
39DATABASES = {
40 'default': {
41 'ENGINE': 'django.db.backends.mysql',
42 'NAME': 'toaster_data',
43 'USER': 'toaster',
44 'PASSWORD': 'yourpasswordhere',
45 'HOST': '127.0.0.1',
46 'PORT': '3306',
47 }
48}
49
50# Location where static files will be placed by "manage.py collectstatic"
51STATIC_ROOT = '/var/www/static-toaster/'
52
53# URL prefix for static files.
54STATIC_URL = '/static-toaster/'
55
56# Hosts that Django will serve
57# https://docs.djangoproject.com/en/1.8/ref/settings/#std:setting-ALLOWED_HOSTS
58ALLOWED_HOSTS = ['toaster-example.example.com']