Skip to content

Commit fa9a995

Browse files
committed
Merge remote-tracking branch 'origin' into daniel/ui
2 parents effa4ae + d7f7af8 commit fa9a995

File tree

77 files changed

+3695
-801
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+3695
-801
lines changed

.github/workflows/trigger-api-tasks-deploy-main.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@ jobs:
2525
- name: Install DB package dependencies
2626
working-directory: ./packages/db
2727
run: bun install --frozen-lockfile --ignore-scripts
28+
- name: Install Integration Platform package dependencies
29+
working-directory: ./packages/integration-platform
30+
run: bun install --frozen-lockfile --ignore-scripts
31+
- name: Build Integration Platform package
32+
working-directory: ./packages/integration-platform
33+
run: bun run build
2834
- name: Build DB package
2935
working-directory: ./packages/db
3036
run: bun run build

.github/workflows/trigger-api-tasks-deploy-release.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,13 @@ jobs:
2828
working-directory: ./packages/db
2929
run: bun install --frozen-lockfile --ignore-scripts
3030

31+
- name: Install Integration Platform package dependencies
32+
working-directory: ./packages/integration-platform
33+
run: bun install --frozen-lockfile --ignore-scripts
34+
- name: Build Integration Platform package
35+
working-directory: ./packages/integration-platform
36+
run: bun run build
37+
3138
- name: Build DB package
3239
working-directory: ./packages/db
3340
run: bun run build

.github/workflows/trigger-tasks-deploy-main.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,15 @@ jobs:
2424
- name: Install Email package dependencies
2525
working-directory: ./packages/email
2626
run: bun install --frozen-lockfile --ignore-scripts
27+
- name: Install Integration Platform package dependencies
28+
working-directory: ./packages/integration-platform
29+
run: bun install --frozen-lockfile --ignore-scripts
2730
- name: Build DB package
2831
working-directory: ./packages/db
2932
run: bun run build
33+
- name: Build Integration Platform package
34+
working-directory: ./packages/integration-platform
35+
run: bun run build
3036
- name: Copy schema to app and generate client
3137
working-directory: ./apps/app
3238
run: |

.github/workflows/trigger-tasks-deploy-release.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,18 @@ jobs:
2727
- name: Install Email package dependencies
2828
working-directory: ./packages/email
2929
run: bun install --frozen-lockfile --ignore-scripts
30+
- name: Install Integration Platform package dependencies
31+
working-directory: ./packages/integration-platform
32+
run: bun install --frozen-lockfile --ignore-scripts
3033

3134
- name: Build DB package
3235
working-directory: ./packages/db
3336
run: bun run build
3437

38+
- name: Build Integration Platform package
39+
working-directory: ./packages/integration-platform
40+
run: bun run build
41+
3542
- name: Copy schema to app and generate client
3643
working-directory: ./apps/app
3744
run: |

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# [1.71.0](https://github.com/trycompai/comp/compare/v1.70.0...v1.71.0) (2025-12-16)
2+
3+
4+
### Features
5+
6+
* Added logout function to onboarding/setup ([#1914](https://github.com/trycompai/comp/issues/1914)) ([d58341b](https://github.com/trycompai/comp/commit/d58341b6f84dbce8309f9059bc845a1846021fa6))
7+
* **integrations:** update sanitized inputs for github to read monorepo apps ([#1929](https://github.com/trycompai/comp/issues/1929)) ([5912194](https://github.com/trycompai/comp/commit/5912194a1bcd728a09c98d5f15264de00252dc72))
8+
* **onboarding:** add skip functionality to onboarding steps ([#1925](https://github.com/trycompai/comp/issues/1925)) ([b522c10](https://github.com/trycompai/comp/commit/b522c10231ad82a8391881d66230c3df7c050c58))
9+
10+
11+
### Reverts
12+
13+
* Revert "[dev] [Itsnotaka] daniel/ui ([#1915](https://github.com/trycompai/comp/issues/1915))" ([#1928](https://github.com/trycompai/comp/issues/1928)) ([ec93c2e](https://github.com/trycompai/comp/commit/ec93c2ee8add06e598213a17a0eb29eca073d56c))
14+
115
# [1.70.0](https://github.com/trycompai/comp/compare/v1.69.0...v1.70.0) (2025-12-12)
216

317

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ COPY package.json bun.lock ./
1212
COPY packages/kv/package.json ./packages/kv/
1313
COPY packages/ui/package.json ./packages/ui/
1414
COPY packages/email/package.json ./packages/email/
15+
COPY packages/integration-platform/package.json ./packages/integration-platform/
1516
COPY packages/integrations/package.json ./packages/integrations/
1617
COPY packages/utils/package.json ./packages/utils/
1718
COPY packages/tsconfig/package.json ./packages/tsconfig/
@@ -22,7 +23,7 @@ COPY apps/app/package.json ./apps/app/
2223
COPY apps/portal/package.json ./apps/portal/
2324

2425
# Install all dependencies
25-
RUN PRISMA_SKIP_POSTINSTALL_GENERATE=true bun install
26+
RUN PRISMA_SKIP_POSTINSTALL_GENERATE=true bun install --ignore-scripts
2627

2728
# =============================================================================
2829
# STAGE 2: Ultra-Minimal Migrator - Only Prisma
@@ -91,7 +92,7 @@ ENV NEXT_PUBLIC_BETTER_AUTH_URL=$NEXT_PUBLIC_BETTER_AUTH_URL \
9192
NEXT_OUTPUT_STANDALONE=true \
9293
NODE_OPTIONS=--max_old_space_size=6144
9394

94-
# Build the app (schema already combined above)
95+
# Build the app
9596
RUN cd apps/app && SKIP_ENV_VALIDATION=true bun run build:docker
9697

9798
# =============================================================================
@@ -106,7 +107,6 @@ COPY --from=app-builder /app/apps/app/.next/standalone ./
106107
COPY --from=app-builder /app/apps/app/.next/static ./apps/app/.next/static
107108
COPY --from=app-builder /app/apps/app/public ./apps/app/public
108109

109-
110110
EXPOSE 3000
111111
CMD ["node", "apps/app/server.js"]
112112

@@ -135,7 +135,7 @@ ENV NEXT_PUBLIC_BETTER_AUTH_URL=$NEXT_PUBLIC_BETTER_AUTH_URL \
135135
NEXT_OUTPUT_STANDALONE=true \
136136
NODE_OPTIONS=--max_old_space_size=6144
137137

138-
# Build the portal (schema already combined above)
138+
# Build the portal
139139
RUN cd apps/portal && SKIP_ENV_VALIDATION=true bun run build:docker
140140

141141
# =============================================================================

0 commit comments

Comments
 (0)