mirror of
https://github.com/harvard-edge/cs249r_book.git
synced 2026-03-09 07:15:51 -05:00
- Move 'Getting Started' section earlier (position 6, after Build → Use → Reflect) - Add 'Common Pitfalls' section to all modules (3-5 pitfalls with code examples) - Add 'Production Context' section to all modules (framework comparisons, real-world usage) - Verify professional emoji usage (no emoji in section headers) - Apply consistent structure across all 20 modules
6 lines
137 B
Bash
6 lines
137 B
Bash
# Book development environment
|
|
if [ -d .venv ]; then
|
|
source .venv/bin/activate
|
|
echo "📚 Book environment activated (.venv)"
|
|
fi
|