14 lines
287 B
Bash
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
|