index.py.ex
author fabien@tzone.org
Wed, 31 Dec 2008 01:40:46 -0500
changeset 72 34fcc8b2c1f5
parent 68 c1f1491f098c
permissions -rw-r--r--
Only add unique keywords and remove utils.py, which I'm not sure about the copyright.

#!/usr/bin/python

if (__name__ == '__main__'):
	import sys
	sys.path.insert(0, "./lib")

from config import CONFIG

CONFIG.db_name = 'database_name'
CONFIG.db_user = 'my_user'
CONFIG.db_host = 'db.host.com'
CONFIG.db_passwd = 'secr3t.passwd'
# CONFIG.db_port = 5432

import xbelweb

if (__name__ == "__main__"):
	xbelweb.main()