| Line | |
|---|
| 1 | # |
|---|
| 2 | # adhocracy - Pylons testing environment configuration |
|---|
| 3 | # |
|---|
| 4 | # The %(here)s variable will be replaced with the parent directory of this file |
|---|
| 5 | # |
|---|
| 6 | [DEFAULT] |
|---|
| 7 | debug = true |
|---|
| 8 | # Uncomment and replace with the address which should receive any error reports |
|---|
| 9 | #email_to = you@yourdomain.com |
|---|
| 10 | smtp_server = localhost |
|---|
| 11 | error_email_from = paste@localhost |
|---|
| 12 | |
|---|
| 13 | [server:main] |
|---|
| 14 | use = egg:Paste#http |
|---|
| 15 | host = 127.0.0.1 |
|---|
| 16 | port = 5000 |
|---|
| 17 | |
|---|
| 18 | [app:main] |
|---|
| 19 | use = config:development.ini |
|---|
| 20 | |
|---|
| 21 | #sqlalchemy.url = sqlite:///:memory: |
|---|
| 22 | sqlalchemy.url = sqlite:///%(here)s/test.db |
|---|
| 23 | |
|---|
| 24 | # Add additional test specific configuration options as necessary. |
|---|
| 25 | adhocracy.setup.drop = KILL_EM_ALL |
|---|
| 26 | adhocracy.site.dir = %(here)s/test-site |
|---|
| 27 | adhocracy.domains = test.lan |
|---|
| 28 | |
|---|
| 29 | skip_migration = True |
|---|
| 30 | skip_authentication = True |
|---|
| 31 | skip_setupentities = True |
|---|
Note: See
TracBrowser
for help on using the repository browser.