Skip to content

Commit 434eb8b

Browse files
committed
Refactor environment variables in docker-compose and turbo.json for consistency and clarity
1 parent 069978c commit 434eb8b

File tree

4 files changed

+542
-14
lines changed

4 files changed

+542
-14
lines changed

docker-compose.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,7 @@ services:
2929
container_name: devlog-web
3030
environment:
3131
- NODE_ENV=production
32-
- POSTGRES_URL=postgresql://postgres:postgres@postgres:5432/devlog
33-
- DEVLOG_STORAGE_TYPE=postgres
34-
- POSTGRES_SSL=false
32+
- DATABASE_URL=postgresql://postgres:postgres@postgres:5432/devlog
3533
- NEXT_TELEMETRY_DISABLED=1
3634
- PORT=3000
3735
ports:

packages/core/src/services/index.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,6 @@ export type { LLMServiceConfig } from './llm-service.js';
1313

1414
// SSO Service
1515
export { SSOService } from './sso-service.js';
16+
17+
// Document Service
18+
export { PrismaDocumentService as DocumentService } from './prisma-document-service.js';

0 commit comments

Comments
 (0)