Add hellotech bash configs
parent
1da6235c07
commit
209c74ca72
@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env bash
|
||||
# shellcheck disable=1090
|
||||
|
||||
if [ -f "$(brew --prefix)/share/bash-completion/bash_completion" ]; then
|
||||
. "$(brew --prefix)/share/bash-completion/bash_completion"
|
||||
fi
|
||||
|
||||
source <(kubectl completion bash)
|
@ -0,0 +1,47 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
alias orb="cd ~/code/circleci-ci-orb"
|
||||
alias core="cd ~/code/core"
|
||||
alias sync-service="cd ~/code/sync-service"
|
||||
alias entities="cd ~/code/entities"
|
||||
alias dispatch="cd ~/code/dispatch-service"
|
||||
alias infra="cd ~/code/hellotech-infra"
|
||||
#alias launch="/Users/$USER/code/hellotech-clients/launch.sh"
|
||||
|
||||
#htc=~/code/hellotech-clients
|
||||
#alias htcstart="cd $htc;yarn run dev"
|
||||
#unset htc
|
||||
|
||||
#ht=~/code/hellotech
|
||||
#alias htstart="cd $ht;bundle exec rails s"
|
||||
#alias jobstart="cd $ht;ruby script/delayed_job start"
|
||||
#alias jobstop="cd $ht;ruby script/delayed_job stop"
|
||||
#alias kiqstart="cd $ht;bundle exec sidekiq"
|
||||
#unset ht
|
||||
|
||||
#htp=~/code/hellotech-partners
|
||||
#alias htpstart="cd $htp;npm start"
|
||||
#unset htp
|
||||
|
||||
#htapp=~/code/hellotech-tech-app
|
||||
#alias htappstart="cd $htapp;react-native run-android"
|
||||
#unset htapp
|
||||
|
||||
#auth=~/code/hellotech-auth
|
||||
#alias authstart="cd $auth;PORT=3002 bundle exec puma -C config/puma.rb"
|
||||
#unset auth
|
||||
|
||||
#na=~/code/tech-api
|
||||
#alias nastart="cd $na;npm start"
|
||||
#unset na
|
||||
|
||||
#fn=~/code/ht-fn
|
||||
#unset fn
|
||||
#kus=~/code/ht-kustomer
|
||||
#unset kus
|
||||
#htt=~/code/ht-tech-tracking
|
||||
#unset htt
|
||||
#crawl=~/code/hellotech-crawler
|
||||
#unset crawl
|
||||
#scripts=~/code/hellotech-scripts
|
||||
#unset scripts
|
@ -0,0 +1,5 @@
|
||||
#!/usr/bin/env bash
|
||||
# shellcheck disable=SC2034
|
||||
BASH_SILENCE_DEPRECATION_WARNING=1
|
||||
GOPRIVATE=github.com/HelloTech
|
||||
GO_TEST=gotest
|
Loading…
Reference in New Issue