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
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
contents: read
packages: write
strategy:
fail-fast: false
matrix:
service:
- api
Expand Down
6 changes: 0 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1 @@
# CHANGELOG

<!-- version list -->

## v1.0.0 (2026-03-23)

- Initial Release
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "knowledge-tree-workspace"
version = "1.0.0"
version = "0.1.0"
description = "Knowledge Tree monorepo workspace"
requires-python = ">=3.12"

Expand Down
2 changes: 1 addition & 1 deletion services/api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ COPY libs/ libs/
COPY services/api/ services/api/

# Install dependencies
RUN cd services/api && uv sync --frozen --no-dev
RUN cd services/api && uv sync --frozen --no-dev --package kt-api

EXPOSE 8000

Expand Down
2 changes: 1 addition & 1 deletion services/mcp/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ COPY libs/ libs/
COPY services/mcp/ services/mcp/

# Install dependencies
RUN cd services/mcp && uv sync --frozen --no-dev
RUN cd services/mcp && uv sync --frozen --no-dev --package kt-mcp

EXPOSE 8001

Expand Down
2 changes: 1 addition & 1 deletion services/worker-conversations/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ COPY pyproject.toml uv.lock ./
COPY libs/ libs/
COPY services/worker-conversations/ services/worker-conversations/

RUN cd services/worker-conversations && uv sync --frozen --no-dev
RUN cd services/worker-conversations && uv sync --frozen --no-dev --package kt-worker-conversations

CMD ["uv", "run", "--project", "services/worker-conversations", "-m", "kt_worker_conv"]
2 changes: 1 addition & 1 deletion services/worker-ingest/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ COPY pyproject.toml uv.lock ./
COPY libs/ libs/
COPY services/worker-ingest/ services/worker-ingest/

RUN cd services/worker-ingest && uv sync --frozen --no-dev
RUN cd services/worker-ingest && uv sync --frozen --no-dev --package kt-worker-ingest

CMD ["uv", "run", "--project", "services/worker-ingest", "-m", "kt_worker_ingest"]
2 changes: 1 addition & 1 deletion services/worker-nodes/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ COPY pyproject.toml uv.lock ./
COPY libs/ libs/
COPY services/worker-nodes/ services/worker-nodes/

RUN cd services/worker-nodes && uv sync --frozen --no-dev
RUN cd services/worker-nodes && uv sync --frozen --no-dev --package kt-worker-nodes

CMD ["uv", "run", "--project", "services/worker-nodes", "-m", "kt_worker_nodes"]
2 changes: 1 addition & 1 deletion services/worker-orchestrator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ COPY pyproject.toml uv.lock ./
COPY libs/ libs/
COPY services/worker-orchestrator/ services/worker-orchestrator/

RUN cd services/worker-orchestrator && uv sync --frozen --no-dev
RUN cd services/worker-orchestrator && uv sync --frozen --no-dev --package kt-worker-orchestrator

CMD ["uv", "run", "--project", "services/worker-orchestrator", "-m", "kt_worker_orchestrator"]
2 changes: 1 addition & 1 deletion services/worker-query/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ COPY pyproject.toml uv.lock ./
COPY libs/ libs/
COPY services/worker-query/ services/worker-query/

RUN cd services/worker-query && uv sync --frozen --no-dev
RUN cd services/worker-query && uv sync --frozen --no-dev --package kt-worker-query

CMD ["uv", "run", "--project", "services/worker-query", "-m", "kt_worker_query"]
2 changes: 1 addition & 1 deletion services/worker-search/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ COPY pyproject.toml uv.lock ./
COPY libs/ libs/
COPY services/worker-search/ services/worker-search/

RUN cd services/worker-search && uv sync --frozen --no-dev
RUN cd services/worker-search && uv sync --frozen --no-dev --package kt-worker-search

CMD ["uv", "run", "--project", "services/worker-search", "-m", "kt_worker_search"]
2 changes: 1 addition & 1 deletion services/worker-sync/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ COPY pyproject.toml uv.lock ./
COPY libs/ libs/
COPY services/worker-sync/ services/worker-sync/

RUN cd services/worker-sync && uv sync --frozen --no-dev
RUN cd services/worker-sync && uv sync --frozen --no-dev --package kt-worker-sync

CMD ["uv", "run", "--project", "services/worker-sync", "-m", "kt_worker_sync"]
Loading