1
0
Fork 0
satnogs-db/db/settings/stage.py

12 lines
248 B
Python
Raw Normal View History

2015-04-22 05:05:30 -06:00
import os
from base import *
# Security
ALLOWED_HOSTS = os.getenv('ALLOWED_HOSTS', '*')
# Mail
EMAIL_HOST = "localhost"
EMAIL_PORT = 25
DEFAULT_FROM_EMAIL = os.getenv('DEFAULT_FROM_EMAIL', 'noreply@example.com')
SERVER_EMAIL = DEFAULT_FROM_EMAIL