mirror of
https://github.com/aljazceru/claude-code-viewer.git
synced 2025-12-19 06:14:19 +01:00
12 lines
241 B
Bash
Executable File
12 lines
241 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
export PORT=4000
|
|
export GLOBAL_CLAUDE_DIR=$(git rev-parse --show-toplevel)/mock-global-claude-dir
|
|
|
|
echo "Check directory structure in $GLOBAL_CLAUDE_DIR:"
|
|
ls -l $GLOBAL_CLAUDE_DIR
|
|
|
|
node ./dist/main.js
|