diff options
| author | Michael Wood <michael.g.wood@intel.com> | 2016-11-24 11:19:54 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-11-30 15:48:09 +0000 |
| commit | 6191f71f81ad84e846aef5d6d0424a397b4ec360 (patch) | |
| tree | a59a99b1197013dc2ad1ea295d47973804d1bd3b | |
| parent | 4477a762bd862105a4c438d4b851611915da9a35 (diff) | |
| download | poky-6191f71f81ad84e846aef5d6d0424a397b4ec360.tar.gz | |
bitbake: toaster: Add an example production settings file
Add an example settings that can be used for the basis of the production
instance of Toaster.
[YOCTO #10581]
(Bitbake rev: 1a7c356491b88c8decced39fb2039ef90065f2d2)
Signed-off-by: Michael Wood <michael.g.wood@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | bitbake/lib/toaster/toastermain/settings_production_example.py | 58 |
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 | |||
| 30 | from toastermain.settings import * # NOQA | ||
| 31 | |||
| 32 | # Set this value! | ||
| 33 | SECRET_KEY = None | ||
| 34 | |||
| 35 | # Switch off any debugging | ||
| 36 | DEBUG = True | ||
| 37 | TEMPLATE_DEBUG = DEBUG | ||
| 38 | |||
| 39 | DATABASES = { | ||
| 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" | ||
| 51 | STATIC_ROOT = '/var/www/static-toaster/' | ||
| 52 | |||
| 53 | # URL prefix for static files. | ||
| 54 | STATIC_URL = '/static-toaster/' | ||
| 55 | |||
| 56 | # Hosts that Django will serve | ||
| 57 | # https://docs.djangoproject.com/en/1.8/ref/settings/#std:setting-ALLOWED_HOSTS | ||
| 58 | ALLOWED_HOSTS = ['toaster-example.example.com'] | ||
