summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastermain/settings_production_example.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/toastermain/settings_production_example.py')
-rw-r--r--bitbake/lib/toaster/toastermain/settings_production_example.py58
1 files changed, 58 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastermain/settings_production_example.py b/bitbake/lib/toaster/toastermain/settings_production_example.py
new file mode 100644
index 0000000000..61a288864a
--- /dev/null
+++ b/bitbake/lib/toaster/toastermain/settings_production_example.py
@@ -0,0 +1,58 @@
1#
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']