Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,11 @@ Probá el launcher localmente (sin release real) contra un bundle armado a mano:
```bash
NEXT_TELEMETRY_DISABLED=1 npx next build # genera .next/standalone
cp -r .next/static .next/standalone/.next/static && cp -r public .next/standalone/public
# El tracer de Next (nft) NO sigue el require dinámico `require(`@libsql/${plat}`)`,
# así que el binario nativo queda fuera del standalone. Lo copiamos a mano (igual que
# el CI en release-bundles.yml), sino SQLite/libsql rompe con "Cannot find module".
mkdir -p .next/standalone/node_modules/@libsql && cp -r node_modules/@libsql/. .next/standalone/node_modules/@libsql/
[ -d node_modules/libsql ] && { mkdir -p .next/standalone/node_modules/libsql && cp -r node_modules/libsql/. .next/standalone/node_modules/libsql/; }
tar -czf /tmp/sa.tgz -C .next/standalone .
bash launcher/verify-launcher.sh /tmp/sa.tgz # E2E: arranque + datos + teardown
```
Expand Down
2 changes: 1 addition & 1 deletion launcher/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "quick-outerbase",
"version": "0.5.0",
"version": "0.6.0",
"description": "Database GUI for your terminal: pass a DATABASE_URL and `npx quick-outerbase` opens a local web UI to browse, query and edit Postgres, MySQL, SQLite, libSQL/Turso and DynamoDB. A fast, open-source Prisma Studio / Drizzle Studio / TablePlus / DbGate alternative. Community fork of Outerbase Studio (AGPL-3.0).",
"license": "AGPL-3.0-only",
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "quick-outerbase",
"version": "0.5.0",
"version": "0.6.0",
"private": true,
"description": "Database GUI in your terminal: pass a DATABASE_URL and `npx quick-outerbase` opens a local web UI to browse, query and edit Postgres, MySQL, SQLite, libSQL/Turso and DynamoDB. Open-source Prisma Studio / Drizzle Studio / TablePlus / DbGate alternative. Unofficial community fork of Outerbase Studio (AGPL-3.0).",
"license": "AGPL-3.0-only",
Expand Down
Loading