start new:
tmux
start new with session name:
tmux new -s myname
| Some Jenkinsfile examples |
| # import config. | |
| # You can change the default config with `make cnf="config_special.env" build` | |
| cnf ?= config.env | |
| include $(cnf) | |
| export $(shell sed 's/=.*//' $(cnf)) | |
| # import deploy config | |
| # You can change the default deploy config with `make cnf="deploy_special.env" release` | |
| dpl ?= deploy.env | |
| include $(dpl) |
| { | |
| "logging": { | |
| "version": 1, | |
| "disable_existing_loggers": true, | |
| "formatters": { | |
| "brief": { | |
| "class": "logging.Formatter", | |
| "datefmt": "%I:%M:%S", | |
| "format": "%(levelname)-8s; %(name)-15s; %(message)s" | |
| }, |