Filip de Waard is sharing code with you

Bitbucket is a code hosting site. Unlimited public and private repositories. Free for small teams.

Don't show this again

fmw / vix http://vix.io/

Document management system designed to interact through JSON and/or the Atom Publishing Protocol.

Clone this repository (size: 126.8 KB): HTTPS / SSH
hg clone https://bitbucket.org/fmw/vix
hg clone ssh://hg@bitbucket.org/fmw/vix

vix / development.ini

#
# vix - Pylons development environment configuration
#
# The %(here)s variable will be replaced with the parent directory of this file
#
[DEFAULT]
debug = true
# Uncomment and replace with the address which should receive any error reports
#email_to = you@yourdomain.com
smtp_server = localhost
error_email_from = paste@localhost

[server:main]
use = egg:Paste#http
host = 127.0.0.1
port = 5000

[app:main]
use = egg:vix
full_stack = true
static_files = true

cache_dir = %(here)s/data
beaker.session.key = vix
beaker.session.secret = somesecret

# If you'd like to fine-tune the individual locations of the cache data dirs
# for the Cache data, or the Session saves, un-comment the desired settings
# here:
#beaker.cache.data_dir = %(here)s/data/cache
#beaker.session.data_dir = %(here)s/data/sessions

# WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT*
# Debug mode will enable the interactive debugging tool, allowing ANYONE to
# execute malicious code after an exception is raised.
#set debug = false

couchdb_server = http://localhost:5984/
couchdb_uri = http://localhost:5984/vix_dev

#authentication session duration in seconds
auth_session_duration = 60

# Logging configuration
[loggers]
keys = root, routes, vix

[handlers]
keys = console

[formatters]
keys = generic

[logger_root]
level = INFO
handlers = console

[logger_routes]
level = INFO
handlers =
qualname = routes.middleware
# "level = DEBUG" logs the route matched and routing variables.

[logger_vix]
level = DEBUG
handlers =
qualname = vix

[handler_console]
class = StreamHandler
args = (sys.stderr,)
level = NOTSET
formatter = generic

[formatter_generic]
format = %(asctime)s,%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s
datefmt = %H:%M:%S