tlc-claude-code 1.2.25 → 1.2.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -164,7 +164,7 @@ tlc init
164
164
  |-----|---------|
165
165
  | http://localhost:3147 | Dashboard — Live preview, logs, tasks |
166
166
  | http://localhost:5001 | App — Your running application |
167
- | http://localhost:8080 | DB AdminDatabase GUI (Adminer) |
167
+ | http://localhost:8081 | DB Studiopgweb (or Drizzle/Prisma Studio) |
168
168
  | localhost:5433 | Database — PostgreSQL |
169
169
 
170
170
  **Features:**
@@ -58,17 +58,20 @@ services:
58
58
  condition: service_healthy
59
59
  restart: on-failure
60
60
 
61
- # Database GUI (Adminer)
61
+ # Database GUI (pgweb - clean, modern)
62
+ # Note: If using Drizzle/Prisma, run their studios instead:
63
+ # npx drizzle-kit studio (port 4983)
64
+ # npx prisma studio (port 5555)
62
65
  dbadmin:
63
- image: adminer:latest
66
+ image: sosedoff/pgweb:latest
64
67
  container_name: tlc-${COMPOSE_PROJECT_NAME:-dev}-dbadmin
65
68
  ports:
66
- - "${DBADMIN_PORT:-8080}:8080"
69
+ - "${DBADMIN_PORT:-8081}:8081"
67
70
  environment:
68
- - ADMINER_DEFAULT_SERVER=db
69
- - ADMINER_DESIGN=nette
71
+ - PGWEB_DATABASE_URL=postgres://postgres:postgres@db:5432/app?sslmode=disable
70
72
  depends_on:
71
- - db
73
+ db:
74
+ condition: service_healthy
72
75
  restart: on-failure
73
76
 
74
77
  # MinIO S3-Compatible Storage
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tlc-claude-code",
3
- "version": "1.2.25",
3
+ "version": "1.2.26",
4
4
  "description": "TLC - Test Led Coding for Claude Code",
5
5
  "bin": {
6
6
  "tlc": "./bin/tlc.js",