Updated pocketbase errors.

This commit is contained in:
2026-09-06 07:18:40 +00:00
parent c80c2b0b12
commit 424a2b016a
3 changed files with 6 additions and 2 deletions
+2 -1
View File
@@ -50,7 +50,8 @@ ENV NODE_ENV=production \
HOST=0.0.0.0 \ HOST=0.0.0.0 \
PORT=3000 \ PORT=3000 \
PB_PORT=8090 \ PB_PORT=8090 \
PB_URL=http://127.0.0.1:8090 PB_URL=http://127.0.0.1:8090 \
SHOPIFY_TOKEN_CACHE=/app/pb_data/shopify-token.json
# Install production dependencies only (react + @tanstack/* — no vite, # Install production dependencies only (react + @tanstack/* — no vite,
# tailwind, eslint or typescript ship in the runtime image). # tailwind, eslint or typescript ship in the runtime image).
+1
View File
@@ -2,6 +2,7 @@
set -euo pipefail set -euo pipefail
parent_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" || exit ; pwd -P ) parent_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" || exit ; pwd -P )
cd "$parent_path" || exit cd "$parent_path" || exit
git pull
if [ 1 -eq "$#" ] if [ 1 -eq "$#" ]
then then
make build-production TAG="$1" make build-production TAG="$1"
+3 -1
View File
@@ -25,7 +25,9 @@ PB_PID=$!
# when records already exist or no superuser env is provided) # when records already exist or no superuser env is provided)
( (
sleep 2 sleep 2
if node scripts/pb-seed.mjs; then if [ ! -f scripts/pb-seed.mjs ]; then
echo "[entrypoint] WARNING: scripts/pb-seed.mjs missing from image — the image was built from a stale checkout; rebuild it"
elif node scripts/pb-seed.mjs; then
echo "[entrypoint] pocketbase seed complete" echo "[entrypoint] pocketbase seed complete"
else else
echo "[entrypoint] pocketbase seed skipped/failed — site falls back to bundled defaults" echo "[entrypoint] pocketbase seed skipped/failed — site falls back to bundled defaults"