mirror of
https://github.com/nikdoof/grumble.git
synced 2025-12-11 16:02:14 +00:00
11 lines
213 B
Python
11 lines
213 B
Python
import os
|
|
_basedir = os.path.abspath(os.path.dirname(__file__))
|
|
|
|
DEBUG = False
|
|
|
|
ADMINS = frozenset(['youremail@yourdomain.com'])
|
|
SECRET_KEY = 'SecretKeyForSessionSigning'
|
|
|
|
THREADS_PER_PAGE = 8
|
|
|
|
ICE_SECRET = 'test' |