123456789101112131415161718192021222324252627 |
-
-
-
-
-
- [DEFAULT]
- debug = true
-
-
- smtp_server = localhost
- error_email_from = turbogears@localhost
-
- [server:main]
- use = egg:gearbox#wsgiref
- host = 127.0.0.1
- port = 8080
-
- [app:main]
- sqlalchemy.url = sqlite:///:memory:
- use = config:development.ini
-
- [app:main_without_authn]
- use = main
- skip_authentication = True
-
-
|