You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
1.6 KiB
72 lines
1.6 KiB
### |
|
# app configuration |
|
# https://docs.pylonsproject.org/projects/pyramid/en/latest/narr/environment.html |
|
### |
|
|
|
[app:main] |
|
use = egg:superx_budget |
|
|
|
pwd.db = |
|
$argon2id$v=19$m=102400,t=2,p=8$f48xZqyVUsoZg5AyJmRszQ$5Bn/u67+2pHNBxe5g0UFnw |
|
$argon2id$v=19$m=102400,t=2,p=8$vheCMKa0dq7V2nuPUWrtXQ$pfomI8eG74mKulf1Elp0JA |
|
|
|
auth.secret = "change me in production" |
|
session.secret = "change me in production" |
|
budgets.dir = %(here)s/test_data |
|
|
|
pyramid.reload_templates = true |
|
pyramid.includes = |
|
pyramid_mailer.debug |
|
|
|
mail.host = "localhost" # SMTP host |
|
mail.port = 2525 # SMTP port |
|
mail.username = "" # SMTP username |
|
mail.password = "" # SMTP password |
|
mail.tls = false # Use TLS |
|
mail.ssl = false # Use SSL |
|
mail.default_sender = "" # Default from address |
|
mail.debug = 0 # SMTP debug level |
|
mail.debug_include_bcc = true # Include Bcc headers when Debugging |
|
|
|
[pshell] |
|
setup = superx_budget.pshell.setup |
|
|
|
### |
|
# wsgi server configuration |
|
### |
|
|
|
[server:main] |
|
use = egg:waitress#main |
|
listen = localhost:6543 |
|
|
|
### |
|
# logging configuration |
|
# https://docs.pylonsproject.org/projects/pyramid/en/latest/narr/logging.html |
|
### |
|
|
|
[loggers] |
|
keys = root, superx_budget |
|
|
|
[handlers] |
|
keys = console |
|
|
|
[formatters] |
|
keys = generic |
|
|
|
[logger_root] |
|
level = INFO |
|
handlers = console |
|
|
|
[logger_superx_budget] |
|
level = DEBUG |
|
handlers = |
|
qualname = superx_budget |
|
|
|
[handler_console] |
|
class = StreamHandler |
|
args = (sys.stderr,) |
|
level = NOTSET |
|
formatter = generic |
|
|
|
[formatter_generic] |
|
format = %(asctime)s %(levelname)-5.5s [%(name)s:%(lineno)s][%(threadName)s] %(message)s
|
|
|