· 9 years ago · Jun 22, 2016, 12:30 AM
1from .common import *
2
3MEDIA_URL = "http://example.com/media/"
4STATIC_URL = "http://example.com/static/"
5ADMIN_MEDIA_PREFIX = "http://example.com/static/admin/"
6SITES["front"]["scheme"] = "http"
7SITES["front"]["domain"] = "example.com"
8
9SECRET_KEY = "theveryultratopsecretkey"
10
11DEBUG = False
12TEMPLATE_DEBUG = False
13PUBLIC_REGISTER_ENABLED = True
14
15DEFAULT_FROM_EMAIL = "no-reply@example.com"
16SERVER_EMAIL = DEFAULT_FROM_EMAIL
17
18# Uncomment and populate with proper connection parameters
19# for enable email sending. EMAIL_HOST_USER should end by @domain.tld
20#EMAIL_BACKEND = "django.core.mail.backends.smtp.EmailBackend"
21#EMAIL_USE_TLS = False
22#EMAIL_HOST = "localhost"
23#EMAIL_HOST_USER = ""
24#EMAIL_HOST_PASSWORD = ""
25#EMAIL_PORT = 25
26
27# Uncomment and populate with proper connection parameters
28# for enable github login/singin.
29#GITHUB_API_CLIENT_ID = "yourgithubclientid"
30#GITHUB_API_CLIENT_SECRET = "yourgithubclientsecret"