Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ dream-server/models/
dream-server/config/openclaw/workspace/
dream-server/**/node_modules/
dream-server/**/dist/
dream-server/**/target/
dream-server/**/.coverage
dream-server/preflight-*.log
dream-server/.current-mode
Expand Down
4 changes: 2 additions & 2 deletions dream-server/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ help: ## Show this help
lint: ## Syntax check all shell scripts + Python compile check
@echo "=== Shell syntax ==="
@fail=0; for f in $(SHELL_FILES); do bash -n "$$f" || fail=1; done; [ $$fail -eq 0 ]
@echo "=== Python compile ==="
@python3 -m py_compile extensions/services/dashboard-api/main.py extensions/services/dashboard-api/agent_monitor.py
@echo "=== Dashboard API (Rust) ==="
@cd extensions/services/dashboard-api && cargo check --workspace 2>&1 | tail -1
@echo "All lint checks passed."

test: ## Run unit and contract tests
Expand Down
3 changes: 3 additions & 0 deletions dream-server/extensions/services/dashboard-api/.dockerignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Rust
target/

# Python
__pycache__/
*.py[cod]
Expand Down
Loading
Loading