# -*- encoding: utf-8 -*-
DATABASE_ENGINE = 'mysql' # variants: mysql, sqlite3
DATABASE_NAME = 'byteflow'
DATABASE_USER = 'root'
DATABASE_PASSWORD = '1989202'
BLOG_NAME = 'Generic Byteflow Blog'
TAGLINE = 'Everyone will like it'
DEFAULT_FROM_EMAIL = 'Generic Byteflow Blog <byteflow@your.dom>'
# Uncomment to get reports of errors by email
#ADMINS = (('Your Name', 'email@example.com'), )
# You may place templates for rendering HTML to the ../themes/{{ THEME }}/ directory.
# They will override the templates with the same name from ../templates/ directory.
THEME = 'default'
# Sample static pages links
STATIC_PAGES = (
('About', '/about/', 'About me'),
('Blog', '/blog/', 'Main place'),
('Dev', 'http://byteflow.su/', 'Take a look at the code and development'),
('', '', ''),
('Alfa Romeo SZ', '/blog/sz/', 'One of the best cars in the world'),
)
# Set this to true to get first comment by any user autoapproved
# This makes sense if captcha is enabled
ANONYMOUS_COMMENTS_APPROVED = True
# Possible choices are: ''|'simple'|'recaptcha'
# To utilize recaptcha you must get public/private keys
# from http://recaptcha.net/
CAPTCHA='simple'
RECAPTCHA_PUBLIC_KEY = ''
RECAPTCHA_PRIVATE_KEY =''
ENABLE_SAPE = False # Set this to true to enable Sape.ru client
ENABLE_IMPORT = False # Set this to true to enable WordPress importer
GA_ACC = '' # Google Analytics account
LI_ACC = False # Set True if you want liveinternet.ru counter
GRAVATAR_ENABLE = False # Enable gravatars?
SHORT_POSTS_IN_FEED = False # Full or short posts in feed
WYSIWYG_ENABLE = False # WYSIWYG for post text in admin
RENDER_METHOD = 'markdown' # Choices: bbcode and simple. Don't use html here, it is unsafe
# SOCIAL_BOOKMARKS can be reconfigured to contain values from apps/blog/templatetags/bookmarks.py
# BLOG_URLCONF_ROOT can be set if you want to remove 'blog/' prefix
# URL_PREFIX can be set to add url prefix to *all* urls
# Livejournal crossposting
ENABLE_LJ_CROSSPOST = False
LJ_USERNAME = ''
LJ_PASSWORD = ''
# DEBUG must be False in production mode
# Please read http://byteflow.su/wiki/DEBUG
DEBUG = True
# Set it to True if you want to activate orm_debug template tag
# You also need to setup INTERNAL_IPS setting
# if you want to use explain feature of orm_debug
ORM_DEBUG = False