Skip to content

Commit 45b645c

Browse files
committed
Update
1 parent 0525b74 commit 45b645c

40 files changed

+1883
-2009
lines changed

.env.example

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Root env — project identity and DB ports for local dev.
2+
# Read by: compose.yaml (via ${VAR}), create-cella CLI.
3+
PROJECT_SLUG=cella
4+
5+
# Database ports
6+
DB_PORT=5432
7+
DB_TEST_PORT=5434

backend/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@
3636
},
3737
"dependencies": {
3838
"@asteasolutions/zod-to-openapi": "^8.4.3",
39-
"@aws-sdk/client-s3": "^3.1007.0",
39+
"@aws-sdk/client-s3": "^3.1008.0",
4040
"@aws-sdk/cloudfront-signer": "^3.1005.0",
41-
"@aws-sdk/lib-storage": "^3.1007.0",
42-
"@aws-sdk/s3-request-presigner": "^3.1007.0",
41+
"@aws-sdk/lib-storage": "^3.1008.0",
42+
"@aws-sdk/s3-request-presigner": "^3.1008.0",
4343
"@blocknote/core": "^0.47.1",
4444
"@dotenv-run/core": "^1.3.8",
4545
"@electric-sql/pglite": "^0.3.16",
@@ -67,7 +67,7 @@
6767
"@oslojs/otp": "^1.1.0",
6868
"@oslojs/webauthn": "^1.0.0",
6969
"@paddle/paddle-node-sdk": "^3.6.0",
70-
"@scalar/hono-api-reference": "^0.10.2",
70+
"@scalar/hono-api-reference": "^0.10.3",
7171
"@sendgrid/mail": "^8.1.6",
7272
"@sentry/cli": "^3.3.3",
7373
"@sentry/node": "^10.43.0",

cdc/src/env.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const envSchema = z.object({
1616
// CDC database URL (cdc_role with REPLICATION + INSERT on activities/counters)
1717
// Used for both replication stream and activity writes
1818
// Enforces append-only access - cdc_role cannot UPDATE/DELETE activities
19-
DATABASE_CDC_URL: z.string().url(),
19+
DATABASE_CDC_URL: z.url(),
2020

2121
// API WebSocket URL for sending activities (derived from appConfig backend port)
2222
API_WS_URL: z.url().default(`ws://localhost:${new URL(appConfig.backendUrl).port}/internal/cdc`),

cella.config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ export default defineConfig({
7575
"frontend/src/modules/home/onboarding/onboarding-config.ts",
7676
"frontend/src/modules/marketing/marketing-config.tsx",
7777
"frontend/src/modules/marketing/about/about-page.tsx",
78-
"frontend/src/modules/users/profile-page-content.tsx",
7978
"backend/src/custom-env.ts",
8079
"backend/src/table-config.ts",
8180
"backend/src/relatable-config.ts",

0 commit comments

Comments
 (0)