9000ecdce5
Gitignore ignores all PyCharm files as well as recommended python files Basic starter project with Pyramid 1.5.x Templates are copied from the OpenPhoto (Trovebox) files Targets: 1. Photo management 2. Angularjs with keyboard/swipe navigation 3. Json API compatible with OpenPhoto 4. Amazon S3 support 5. Tags, etc. 6. The one true source of all a person's photos In Greek mythology, Soter was the spirit of safety, preservation and deliverance from harm.
55 lines
911 B
INI
55 lines
911 B
INI
###
|
|
# app configuration
|
|
# http://docs.pylonsproject.org/projects/pyramid/en/1.5-branch/narr/environment.html
|
|
###
|
|
|
|
[app:main]
|
|
use = egg:Soter
|
|
|
|
pyramid.reload_templates = false
|
|
pyramid.debug_authorization = false
|
|
pyramid.debug_notfound = false
|
|
pyramid.debug_routematch = false
|
|
pyramid.default_locale_name = en
|
|
|
|
###
|
|
# wsgi server configuration
|
|
###
|
|
|
|
[server:main]
|
|
use = egg:waitress#main
|
|
host = 0.0.0.0
|
|
port = 6543
|
|
|
|
###
|
|
# logging configuration
|
|
# http://docs.pylonsproject.org/projects/pyramid/en/1.5-branch/narr/logging.html
|
|
###
|
|
|
|
[loggers]
|
|
keys = root, soter
|
|
|
|
[handlers]
|
|
keys = console
|
|
|
|
[formatters]
|
|
keys = generic
|
|
|
|
[logger_root]
|
|
level = WARN
|
|
handlers = console
|
|
|
|
[logger_soter]
|
|
level = WARN
|
|
handlers =
|
|
qualname = soter
|
|
|
|
[handler_console]
|
|
class = StreamHandler
|
|
args = (sys.stderr,)
|
|
level = NOTSET
|
|
formatter = generic
|
|
|
|
[formatter_generic]
|
|
format = %(asctime)s %(levelname)-5.5s [%(name)s][%(threadName)s] %(message)s
|