From b6c48db10597a092be16d420d8014e2439c2478a Mon Sep 17 00:00:00 2001 From: Paul Trowbridge Date: Sun, 10 May 2026 02:45:52 -0400 Subject: [PATCH] comment out all lines in example files, remove path entries from bashrc_local_example --- dotfiles/.bashrc_local_example | 55 ++++++++-------------------------- dotfiles/.bashrc_paths_example | 2 +- 2 files changed, 14 insertions(+), 43 deletions(-) diff --git a/dotfiles/.bashrc_local_example b/dotfiles/.bashrc_local_example index 072c6f9..89939f0 100644 --- a/dotfiles/.bashrc_local_example +++ b/dotfiles/.bashrc_local_example @@ -1,53 +1,24 @@ -# .bashrc_local - Machine-specific environment variables -# Copy this file to .bashrc_local and fill in your actual values - -# Token for IP services (if needed) -#export IPTOKEN= +# .bashrc_local - Machine-specific secrets and credentials +# Copy this file to .bashrc_local and fill in your actual values. +# All lines are commented out — uncomment and edit what you need. # 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 -export MS="sqlcmd -U username -C -S servername" -export MSC="sqlcmd -U username -S servername -C -s \| -W" +# export MS="sqlcmd -U username -C -S servername" +# export MSC="sqlcmd -U username -S servername -C -s \| -W" +# export MSW="sqlcmd.exe -S servername -C" -# Java and Gradle paths -export JAVA_HOME=/opt/jdk-20.0.1 -export PATH=$PATH:$JAVA_HOME/bin -export PATH=$PATH:/opt/gradle/gradle-8.1/bin -export PATH=$PATH:/opt/mssql-tools18/bin +# Database passwords +# export PGPW=your_postgres_password_here +# export SQLCMDPASSWORD='your_sqlcmd_password_here' # Runner configuration path -export RUNNER_PATH=/opt/jrunner_conf/ +# export RUNNER_PATH=/opt/jrunner_conf/ -# Database passwords (fill in your actual passwords) -export DB2PW=your_db2_password_here -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" +# Token for IP services +# export IPTOKEN= # SQL Server quick-run alias (customize server/credentials) # alias mns='fzf | xargs -I {} sqlcmd -U username -S servername -C -i {} | pspg' diff --git a/dotfiles/.bashrc_paths_example b/dotfiles/.bashrc_paths_example index 6dceea0..5453c21 100644 --- a/dotfiles/.bashrc_paths_example +++ b/dotfiles/.bashrc_paths_example @@ -1,5 +1,5 @@ # .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. # Neovim (installed by install_neovim.sh)