comment out all lines in example files, remove path entries from bashrc_local_example

This commit is contained in:
Paul Trowbridge 2026-05-10 02:45:52 -04:00
parent 399d71808a
commit b6c48db105
2 changed files with 14 additions and 43 deletions

View File

@ -1,53 +1,24 @@
# .bashrc_local - Machine-specific environment variables # .bashrc_local - Machine-specific secrets and credentials
# Copy this file to .bashrc_local and fill in your actual values # Copy this file to .bashrc_local and fill in your actual values.
# All lines are commented out — uncomment and edit what you need.
# Token for IP services (if needed)
#export IPTOKEN=
# PostgreSQL connection string # PostgreSQL connection string
export PG="psql -U username -d database -p 5432 -h hostname" # export PG="psql -U username -d database -p 5432 -h hostname"
# SQL Server connection strings # SQL Server connection strings
export MS="sqlcmd -U username -C -S servername" # export MS="sqlcmd -U username -C -S servername"
export MSC="sqlcmd -U username -S servername -C -s \| -W" # export MSC="sqlcmd -U username -S servername -C -s \| -W"
# export MSW="sqlcmd.exe -S servername -C"
# Java and Gradle paths # Database passwords
export JAVA_HOME=/opt/jdk-20.0.1 # export PGPW=your_postgres_password_here
export PATH=$PATH:$JAVA_HOME/bin # export SQLCMDPASSWORD='your_sqlcmd_password_here'
export PATH=$PATH:/opt/gradle/gradle-8.1/bin
export PATH=$PATH:/opt/mssql-tools18/bin
# Runner configuration path # Runner configuration path
export RUNNER_PATH=/opt/jrunner_conf/ # export RUNNER_PATH=/opt/jrunner_conf/
# Database passwords (fill in your actual passwords) # Token for IP services
export DB2PW=your_db2_password_here # export IPTOKEN=
export PGPW=your_postgres_password_here
export SQLCMDPASSWORD='your_sqlcmd_password_here'
# Windows SQL Server connection (if needed)
# export MSW="sqlcmd.exe -S servername -C "
# Alternative Java/Gradle versions (commented out)
#export JAVA_HOME=/opt/jdk-19.0.1
#export PATH=$PATH:$JAVA_HOME/bin
#export PATH=$PATH:/opt/gradle/gradle-7.6/bin
#export RUNNER_PATH=/opt/runner/
# Deno installation
export DENO_INSTALL="$HOME/.deno"
export PATH="$DENO_INSTALL/bin:$PATH"
# NVM (Node Version Manager)
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
# Rust / Cargo
[ -f "$HOME/.cargo/env" ] && . "$HOME/.cargo/env"
# opencode
export PATH="$HOME/.opencode/bin:$PATH"
# SQL Server quick-run alias (customize server/credentials) # SQL Server quick-run alias (customize server/credentials)
# alias mns='fzf | xargs -I {} sqlcmd -U username -S servername -C -i {} | pspg' # alias mns='fzf | xargs -I {} sqlcmd -U username -S servername -C -i {} | pspg'

View File

@ -1,5 +1,5 @@
# .bashrc_paths - Machine-specific PATH additions and tool initializations # .bashrc_paths - Machine-specific PATH additions and tool initializations
# Copy this file to .bashrc_paths and uncomment/adjust what's installed on this machine. # Copy this file to .bashrc_paths and uncomment what's installed on this machine.
# When a tool (cargo, nvm, conda, etc.) appends lines to .bashrc, move them here instead. # When a tool (cargo, nvm, conda, etc.) appends lines to .bashrc, move them here instead.
# Neovim (installed by install_neovim.sh) # Neovim (installed by install_neovim.sh)