Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
18 changes: 18 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,23 @@ wheels/
pip-log.txt
pip-delete-this-directory.txt

# ============================================
# Node.js / Frontend
# ============================================
node_modules/
ui/node_modules/
.npm/
.pnpm-store/
.yarn/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
ui/dist/
ui/.vite/
ui/coverage/
ui/tsconfig.tsbuildinfo

# ============================================
# IDEs & Editors
# ============================================
Expand Down Expand Up @@ -98,6 +115,7 @@ Thumbs.db
# ============================================
GITHUB_TOKEN_SETUP.md
docs/*.tmp
config.overrides.yaml

# ============================================
# CI/CD
Expand Down
5 changes: 5 additions & 0 deletions config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,8 @@ logging:
level: "INFO" # DEBUG | INFO | WARNING | ERROR
format: "json" # json | console

# UI canlı log dashboard ayarları
ui:
logs:
poll_interval_seconds: 3 # 1-30 arası polling interval
max_events_per_poll: 200 # 20-500 arası event limiti
13 changes: 12 additions & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Multi-stage build for MCP Code Review Server

FROM node:20-alpine as ui-builder

WORKDIR /app/ui

# Install UI dependencies and build artifacts
COPY ui/package*.json ./
RUN npm ci
COPY ui/ ./
RUN npm run build


FROM python:3.11-slim as builder

WORKDIR /app
Expand All @@ -25,6 +36,7 @@ COPY --from=builder /root/.local /root/.local

# Copy application code
COPY . .
COPY --from=ui-builder /app/ui/dist ./ui/dist

# Make sure scripts are in PATH
ENV PATH=/root/.local/bin:$PATH
Expand All @@ -38,4 +50,3 @@ HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \

# Run server
CMD ["python", "server.py"]

Loading