25 lines
		
	
	
		
			755 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			755 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# set env vars, path updates, etc
 | 
						|
[[ -a $HOME/.local-box-vars ]] && source $HOME/.local-box-vars
 | 
						|
 | 
						|
# login shortcuts
 | 
						|
alias assume="source assume"
 | 
						|
alias login-aws='aws sso login --profile'
 | 
						|
alias login-aws-id-list="grep sso_account_id $HOME/.aws/config"
 | 
						|
 | 
						|
# git stuff
 | 
						|
alias gfo='git fetch origin'
 | 
						|
alias gfl='git fetch origin; git log'
 | 
						|
alias gpo='git pull origin'
 | 
						|
alias gppo='git push origin'
 | 
						|
alias gst='git status'
 | 
						|
alias git-push-to-temp='git branch -D temp; git checkout -b temp; git push origin temp -uf; git checkout -'
 | 
						|
alias gptemp='git-push-to-temp'
 | 
						|
 | 
						|
# code/test/linter run and build commands
 | 
						|
alias bel='bundle exec standardrb'
 | 
						|
alias bet='bundle exec rspec'
 | 
						|
alias lintjs='npx prettier --write'
 | 
						|
alias prl='poetry run black'
 | 
						|
alias prt='poetry run pytest'
 | 
						|
 |