forked from hasgeek/hasjob
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Nigel Babu
committed
Jul 7, 2012
1 parent
2f5d624
commit 89452b2
Showing
6 changed files
with
109 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
#: The title of this site | ||
SITE_TITLE='Job Board' | ||
#: TypeKit code for fonts | ||
TYPEKIT_CODE='' | ||
#: Google Analytics code UA-XXXXXX-X | ||
GA_CODE='' | ||
#: Database backend | ||
SQLALCHEMY_DATABASE_URI = 'sqlite:///test.db' | ||
#: Secret key | ||
SECRET_KEY = 'make this something random' | ||
#: Timezone | ||
TIMEZONE = 'Asia/Calcutta' | ||
#: Upload path | ||
UPLOADED_LOGOS_DEST='/tmp/uploads' | ||
#: Search index path | ||
SEARCH_INDEX_PATH='/tmp/search' | ||
#: Mail settings | ||
#: MAIL_FAIL_SILENTLY : default True | ||
#: MAIL_SERVER : default 'localhost' | ||
#: MAIL_PORT : default 25 | ||
#: MAIL_USE_TLS : default False | ||
#: MAIL_USE_SSL : default False | ||
#: MAIL_USERNAME : default None | ||
#: MAIL_PASSWORD : default None | ||
#: DEFAULT_MAIL_SENDER : default None | ||
MAIL_FAIL_SILENTLY = False | ||
MAIL_SERVER = 'localhost' | ||
DEFAULT_MAIL_SENDER = ('Job Board', '[email protected]') | ||
#: Logging: recipients of error emails | ||
ADMINS=[] | ||
#: Log file | ||
LOGFILE='error.log' | ||
#: Use SSL for some URLs | ||
USE_SSL=False | ||
#: Twitter integration (register as a "client" app) | ||
TWITTER_ENABLED=False | ||
TWITTER_CONSUMER_KEY = '' | ||
TWITTER_CONSUMER_SECRET = '' | ||
TWITTER_ACCESS_KEY = '' | ||
TWITTER_ACCESS_SECRET = '' | ||
#: Bit.ly integration for short URLs | ||
BITLY_USER = '' | ||
BITLY_KEY = '' | ||
#: Access key for periodic server-only tasks | ||
PERIODIC_KEY = '' | ||
#: Throttle limit for email domain | ||
THROTTLE_LIMIT = 5 | ||
SUPPORT_EMAIL = '[email protected]' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
#: The title of this site | ||
SITE_TITLE='Job Board' | ||
#: TypeKit code for fonts | ||
TYPEKIT_CODE='' | ||
#: Google Analytics code UA-XXXXXX-X | ||
GA_CODE='' | ||
#: Database backend | ||
SQLALCHEMY_DATABASE_URI = 'mysql://root:@localhost/hasjob' | ||
#: Secret key | ||
SECRET_KEY = 'make this something random' | ||
#: Timezone | ||
TIMEZONE = 'Asia/Calcutta' | ||
#: Upload path | ||
UPLOADED_LOGOS_DEST='/tmp/uploads' | ||
#: Search index path | ||
SEARCH_INDEX_PATH='/tmp/search' | ||
#: Mail settings | ||
#: MAIL_FAIL_SILENTLY : default True | ||
#: MAIL_SERVER : default 'localhost' | ||
#: MAIL_PORT : default 25 | ||
#: MAIL_USE_TLS : default False | ||
#: MAIL_USE_SSL : default False | ||
#: MAIL_USERNAME : default None | ||
#: MAIL_PASSWORD : default None | ||
#: DEFAULT_MAIL_SENDER : default None | ||
MAIL_FAIL_SILENTLY = False | ||
MAIL_SERVER = 'localhost' | ||
DEFAULT_MAIL_SENDER = ('Job Board', '[email protected]') | ||
MAIL_USERNAME = None | ||
MAIL_PASSWORD = None | ||
#: Logging: recipients of error emails | ||
ADMINS=['[email protected]'] | ||
#: Log file | ||
LOGFILE='error.log' | ||
#: Use SSL for some URLs | ||
USE_SSL=False | ||
#: Twitter integration (register as a "client" app) | ||
TWITTER_ENABLED=False | ||
TWITTER_CONSUMER_KEY = '' | ||
TWITTER_CONSUMER_SECRET = '' | ||
TWITTER_ACCESS_KEY = '' | ||
TWITTER_ACCESS_SECRET = '' | ||
#: Bit.ly integration for short URLs | ||
BITLY_USER = '' | ||
BITLY_KEY = '' | ||
#: Access key for periodic server-only tasks | ||
PERIODIC_KEY = '' | ||
#: Throttle limit for email domain | ||
THROTTLE_LIMIT = 5 | ||
SUPPORT_EMAIL = '[email protected]' |