| Home | Trees | Indices | Help |
|---|
|
|
1 import os 2 3 # file imported by config.py when it's in test mode 4 5 DB = 'sqlite:///database.sqlite' 6 testdir = os.path.abspath(os.path.dirname(__file__)) 7 8 # SSL configuration 9 key_file = os.path.join(testdir, 'ssl', 'localhost.key') 10 cert_file = os.path.join(testdir, 'ssl', 'localhost.pem') 11 ca_cert = os.path.join(testdir, 'ssl', 'ca-cert.pem') 12
| Home | Trees | Indices | Help |
|---|
| Generated by Epydoc 3.0.1 on Wed Aug 4 09:57:33 2010 | http://epydoc.sourceforge.net |