summaryrefslogtreecommitdiff
path: root/test_settings.py
blob: b0e38e26bcd619ecc138f7cc858b5307f8c40ede (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
from __future__ import unicode_literals
import os

PROJECT_ROOT = os.path.normpath(
    os.path.join(os.path.dirname(__file__), 'payments'))
TEMPLATES = [{
    'BACKEND': 'django.template.backends.django.DjangoTemplates',
    'DIRS': [os.path.join(PROJECT_ROOT, 'templates')]}]

SECRET_KEY = 'NOTREALLY'
PAYMENT_HOST = 'example.com'

INSTALLED_APPS = ['payments', 'django.contrib.sites']