corporal/dev/rattail.conf
Lance Edgar f9db799506 Add dev bootstrapping, which i found laying around
...not sure what the status of this is, but might as well commit
2021-06-11 17:40:42 -05:00

147 lines
3 KiB
Plaintext

############################################################
#
# Development config for Corporal
#
############################################################
[corepos]
office.url = http://localhost/fannie/
[corepos.api]
url = http://localhost/fannie/ws/
[corepos.db.office_op]
default.url = mysql+mysqlconnector://corepos:corepospass@localhost/core_op
default.pool_recycle = 3600
[corepos.db.office_trans]
default.url = mysql+mysqlconnector://corepos:corepospass@localhost/core_trans
default.pool_recycle = 3600
##############################
# rattail
##############################
[rattail]
app_title = Corporal
timezone.default = America/Chicago
datadir = <ENVDIR><SEP>app<SEP>data
batch.files = <ENVDIR><SEP>app<SEP>data<SEP>batch
workdir = <ENVDIR><SEP>app<SEP>work
[rattail.config]
# include = /etc/rattail/rattail.conf
configure_logging = true
usedb = true
preferdb = true
[rattail.db]
default.url = postgresql://<DBUSER>:<DBPASS>@<DBHOST>/<DBNAME>
versioning.enabled = true
[rattail.mail]
send_emails = false
smtp.server = localhost
templates = rattail:templates/mail
default.prefix = [Rattail]
default.from = rattail@localhost
default.to = root@localhost
# default.enabled = false
[rattail.pod]
pictures.gtin.root_url = https://rattailproject.org/pod/pictures/gtin
[rattail.upgrades]
files = <ENVDIR><SEP>app<SEP>data<SEP>upgrades
##############################
# alembic
##############################
[alembic]
script_location = rattail.db:alembic
version_locations = rattail.db:alembic/versions
##############################
# logging
##############################
[loggers]
keys = root, exc_logger, beaker, txn, sqlalchemy, django_db, flufl_bounce, requests
[handlers]
keys = file, console, email
[formatters]
keys = generic, console
[logger_root]
handlers = file, console
level = DEBUG
[logger_exc_logger]
qualname = exc_logger
handlers = email
level = ERROR
[logger_beaker]
qualname = beaker
handlers =
level = INFO
[logger_txn]
qualname = txn
handlers =
level = INFO
[logger_sqlalchemy]
qualname = sqlalchemy.engine
handlers =
# handlers = file
# level = INFO
[logger_django_db]
qualname = django.db.backends
handlers =
level = INFO
# level = DEBUG
[logger_flufl_bounce]
qualname = flufl.bounce
handlers =
level = WARNING
[logger_requests]
qualname = requests
handlers =
# level = WARNING
[handler_file]
class = handlers.RotatingFileHandler
args = (r'<ENVDIR><SEP>app<SEP>log<SEP>rattail.log', 'a', 1000000, 100, 'utf_8')
formatter = generic
[handler_console]
class = StreamHandler
args = (sys.stderr,)
formatter = console
# formatter = generic
# level = INFO
# level = WARNING
[handler_email]
class = handlers.SMTPHandler
args = ('localhost', 'rattail@localhost', ['root@localhost'], "[Rattail] Logging")
formatter = generic
level = ERROR
[formatter_generic]
format = %(asctime)s %(levelname)-5.5s [%(name)s][%(threadName)s] %(funcName)s: %(message)s
datefmt = %Y-%m-%d %H:%M:%S
[formatter_console]
format = %(levelname)-5.5s [%(name)s][%(threadName)s] %(funcName)s: %(message)s