merge abompards lists-dev playbook into main repo
mark some fixmes move some files/inventory items around
This commit is contained in:
parent
c07f5a9e24
commit
5372f26f07
19 changed files with 1358 additions and 24 deletions
34
files/lists-dev/postorius.settings_local.py.j2
Normal file
34
files/lists-dev/postorius.settings_local.py.j2
Normal file
|
@ -0,0 +1,34 @@
|
|||
#-*- coding: utf-8 -*-
|
||||
|
||||
"""
|
||||
Django local settings for the postorious project.
|
||||
"""
|
||||
|
||||
|
||||
DEBUG = True
|
||||
TEMPLATE_DEBUG = DEBUG
|
||||
|
||||
ADMINS = ()
|
||||
DATABASES = {
|
||||
'default': {
|
||||
'ENGINE': 'django.db.backends.postgresql_psycopg2',
|
||||
'NAME': 'postorius',
|
||||
'USER': 'postorius',
|
||||
'PASSWORD': '{{ lists_dev_ps_db_pass }}',
|
||||
'HOST': 'localhost',
|
||||
'PORT': '',
|
||||
}
|
||||
}
|
||||
|
||||
# URL that handles the media served from STATIC_ROOT. Make sure to use a
|
||||
STATIC_URL = '/postorius/static/'
|
||||
# URL that handles the media served from MEDIA_ROOT. Make sure to use a
|
||||
MEDIA_URL = '/postorius/media/'
|
||||
|
||||
# URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
|
||||
# trailing slash.
|
||||
# Examples: "http://foo.com/media/", "/media/".
|
||||
ADMIN_MEDIA_PREFIX = '/postorius/static/admin/'
|
||||
|
||||
# Make this unique, and don't share it with anybody.
|
||||
SECRET_KEY = '$!-7^wl#wiifjbh)5@f7ji%x!vp7s1vwt26hxvixq0u0'
|
Loading…
Add table
Add a link
Reference in a new issue