# .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" # SQL Server connection strings # 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" # Database passwords # export PGPW=your_postgres_password_here # export SQLCMDPASSWORD='your_sqlcmd_password_here' # Runner configuration path # export RUNNER_PATH=/opt/jrunner_conf/ # 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'