Files
python313/.devcontainer/bashrc
T
2026-06-11 20:57:38 +00:00

14 lines
287 B
Bash

# Project shell startup for VS Code integrated terminals.
if [ -f /etc/bash.bashrc ]; then
source /etc/bash.bashrc
fi
if [ -f /home/vscode/.bashrc ]; then
source /home/vscode/.bashrc
fi
if [ -f /workspace/.venv/bin/activate ]; then
source /workspace/.venv/bin/activate
fi