Private
Public Access
1
0

Add --build to websitebox up, comprehensive guide.md polish

- websitebox up now includes --build flag to always rebuild images,
  fixing Docker cache serving stale containers after code updates
- setup.sh launch command updated to source ~/.bashrc first
- guide.md: added step roadmap table with time estimates
- guide.md: added time estimates to all step headers
- guide.md: updated Launch step to use websitebox shortcut with
  source ~/.bashrc, added command reference table
- guide.md: updated all troubleshooting commands to use websitebox
  shortcut instead of cd + docker compose
- guide.md: added 'websitebox: command not found' troubleshooting
- guide.md: updated setup wizard terminal example to match current
  colored output format
- guide.md: added container build step to launch explanation

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
constantprojects
2026-02-24 09:18:54 -07:00
parent 6a164ab40d
commit 2c3b58eea7
3 changed files with 126 additions and 67 deletions

View File

@@ -258,7 +258,7 @@ if ! grep -qF 'websitebox()' "$SHELL_RC" 2>/dev/null; then
websitebox() {
cd ~/websitebox || return
case "$1" in
up) shift; docker compose up -d "$@" ;;
up) shift; docker compose up -d --build "$@" ;;
logs) shift; docker compose logs -f "$@" ;;
*) docker compose "$@" ;;
esac