secrets, jenkins tricks and productivity
- created jenkins file linter script - created vim script for validating jenkinsfiles - adapt all configs to use secrets - load secrets from hidden file + vim script - tune vim (plugins - icons/fonts/features...) - new aliases (music, jira, git, ...)
This commit is contained in:
15
dot_zshrc
15
dot_zshrc
@ -122,7 +122,20 @@ source $ZSH/oh-my-zsh.sh
|
||||
# ssh
|
||||
# export SSH_KEY_PATH="~/.ssh/rsa_id"
|
||||
|
||||
export JETBRAINS_LICENSE_SERVER=https://licenseserver.collibra.com
|
||||
# private data
|
||||
export JETBRAINS_LICENSE_SERVER=""
|
||||
export BW_SESSION=""
|
||||
export JENKINS_URL=""
|
||||
export JENKINS_SECRET=""
|
||||
export JIRA_URL=""
|
||||
export PROXY_HOST=""
|
||||
export COLORPIC_APIKEY=""
|
||||
|
||||
if test -f "$HOME/.secrets"; then
|
||||
chmod +x "$HOME/.secrets"
|
||||
source "$HOME/.secrets"
|
||||
fi
|
||||
|
||||
export REPO_PATH=$HOME/Code
|
||||
# Set personal aliases, overriding those provided by oh-my-zsh libs,
|
||||
# plugins, and themes. Aliases can be placed here, though oh-my-zsh
|
||||
|
Reference in New Issue
Block a user