a Django-based indieweb.org site
https://00dani.me/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
472 B
20 lines
472 B
from os import environ |
|
|
|
from .base import * |
|
from .base import DATABASES |
|
|
|
ALLOWED_HOSTS = ['00dani.me'] |
|
DEBUG = False |
|
SECRET_KEY = environ['DJANGO_SECRET_KEY'] |
|
|
|
# Use Postgres instead of SQLite in production. |
|
DATABASES['default'] = { |
|
'ENGINE': 'django.db.backends.postgresql', |
|
'NAME': 'lemoncurry', |
|
'USER': 'lemoncurry', |
|
} |
|
|
|
STATIC_URL = 'https://cdn.00dani.me/' |
|
MEDIA_URL = STATIC_URL + 'media/' |
|
META_SITE_DOMAIN = '00dani.me' |
|
META_FB_APPID = '145311792869199'
|
|
|