This repository has been archived by the owner on Jun 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from hasgeek/template-fix-166
Switch to .html.jinja2 templates, fixes #27
- Loading branch information
Showing
4 changed files
with
33 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
#: Database backend | ||
SQLALCHEMY_DATABASE_URI = 'sqlite:///test.db' | ||
#: Cache type | ||
CACHE_TYPE = 'redis' | ||
#: Secret key | ||
SECRET_KEY = 'make this something random' | ||
#: Timezone | ||
TIMEZONE = 'Asia/Kolkata' | ||
#: LastUser server | ||
LASTUSER_SERVER = 'https://auth.hasgeek.com/' | ||
#: LastUser client id | ||
LASTUSER_CLIENT_ID = '' | ||
#: LastUser client secret | ||
LASTUSER_CLIENT_SECRET = '' | ||
#: 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 = ('Hascore', 'test@example.com') | ||
#: Logging: recipients of error emails | ||
ADMINS = [] | ||
#: Log file | ||
LOGFILE = 'error.log' |
Empty file.