comment-server/config/conf.json

18 lines
550 B
JSON
Raw Normal View History

2019-05-20 11:08:04 +02:00
{
2019-05-21 01:09:07 +02:00
"PATH": {
2019-07-22 14:38:53 +02:00
"SCHEMA": "src/schema/comments_ddl.sql",
"DATABASE": "database/comments.db",
2019-07-19 06:31:40 +02:00
"ERROR_LOG": "logs/error.log",
2019-07-20 15:06:34 +02:00
"DEBUG_LOG": "logs/debug.log",
"SERVER_LOG": "logs/server.log"
},
"LOGGING": {
"FORMAT": "%(asctime)s | %(levelname)s | %(name)s | %(module)s.%(funcName)s:%(lineno)d | %(message)s",
"AIOHTTP_FORMAT": "%(asctime)s | %(levelname)s | %(name)s | %(message)s",
"DATEFMT": "%Y-%m-%d %H:%M:%S"
2019-05-20 11:08:04 +02:00
},
2019-05-21 01:09:07 +02:00
"HOST": "localhost",
2019-05-23 23:11:50 +02:00
"PORT": 5921,
2019-07-19 06:31:57 +02:00
"BACKUP_INT": 3600,
"LBRYNET": "http://localhost:5279"
2019-05-20 11:08:04 +02:00
}