Mercurial > hg > wordstream
annotate wordstream.ini @ 9:ab37ae0e9cc0
fix imports
| author | Jeff Hammel <k0scist@gmail.com> |
|---|---|
| date | Tue, 24 Nov 2020 08:55:28 -0800 |
| parents | 8af3412e907a |
| children |
| rev | line source |
|---|---|
| 0 | 1 #!/usr/bin/env paster |
| 2 | |
| 3 [DEFAULT] | |
| 4 debug = true | |
| 5 email_to = k0scist@gmail.com | |
| 6 smtp_server = localhost | |
| 7 error_email_from = paste@localhost | |
| 8 | |
| 9 [server:main] | |
| 10 use = egg:Paste#http | |
| 11 host = 0.0.0.0 | |
| 12 port = 5326 | |
| 13 | |
| 14 [composite:main] | |
| 15 use = egg:Paste#urlmap | |
| 16 / = wordstream | |
| 17 | |
| 18 set debug = false | |
| 19 | |
| 20 [app:wordstream] | |
| 21 paste.app_factory = wordstream.factory:factory | |
| 22 wordstream.seed = /home/jhammel/docs/stories/ghost_in_the_machine.txt |
