This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# An example of the below | |
virtualenv "/home/dvcsmirrors/hg" do | |
owner "root" | |
group "dvcsmirrors" | |
mode 0775 | |
packages "Mercurial" => "1.6.3", | |
"hgsubversion" => "1.1.2" | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
noauth | |
name wvdial | |
#usepeerdns |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"id": "f1ffeb7e.f6451", | |
"type": "http in", | |
"z": "c29865fe.249648", | |
"name": "", | |
"url": "/upload", | |
"method": "get", | |
"upload": false, | |
"swaggerDoc": "", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import logging | |
from logging.handlers import TimedRotatingFileHandler | |
import typing as t | |
LOG_FORMAT = '%(levelname)s %(asctime)s %(message)s' | |
LOG_FORMATTER = logging.Formatter(LOG_FORMAT) | |
LOG_LEVELS = {'not set' : logging.NOTSET, | |
'debug' : logging.DEBUG, | |
'info' : logging.INFO, |