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 +1 -1
- package/docker-compose.dev.yml +9 -6
- package/package.json +1 -1
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:
|
|
167
|
+
| http://localhost:8081 | DB Studio — pgweb (or Drizzle/Prisma Studio) |
|
|
168
168
|
| localhost:5433 | Database — PostgreSQL |
|
|
169
169
|
|
|
170
170
|
**Features:**
|
package/docker-compose.dev.yml
CHANGED
|
@@ -58,17 +58,20 @@ services:
|
|
|
58
58
|
condition: service_healthy
|
|
59
59
|
restart: on-failure
|
|
60
60
|
|
|
61
|
-
# Database GUI (
|
|
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:
|
|
66
|
+
image: sosedoff/pgweb:latest
|
|
64
67
|
container_name: tlc-${COMPOSE_PROJECT_NAME:-dev}-dbadmin
|
|
65
68
|
ports:
|
|
66
|
-
- "${DBADMIN_PORT:-
|
|
69
|
+
- "${DBADMIN_PORT:-8081}:8081"
|
|
67
70
|
environment:
|
|
68
|
-
-
|
|
69
|
-
- ADMINER_DESIGN=nette
|
|
71
|
+
- PGWEB_DATABASE_URL=postgres://postgres:postgres@db:5432/app?sslmode=disable
|
|
70
72
|
depends_on:
|
|
71
|
-
|
|
73
|
+
db:
|
|
74
|
+
condition: service_healthy
|
|
72
75
|
restart: on-failure
|
|
73
76
|
|
|
74
77
|
# MinIO S3-Compatible Storage
|