Skip to content

Commit 8bd995b

Browse files
ImTotemclaude
andcommitted
fix(infra): ensure nginx is started alongside api in deploy
nginx was not running on first deploy, causing reload to fail. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 7cbbea0 commit 8bd995b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

infra/scripts/deploy.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ echo "Current: $CURRENT → Deploying: $NEXT"
6363
echo "1. Building $NEXT..."
6464
$COMPOSE build "api-${NEXT}"
6565

66-
echo "2. Starting $NEXT..."
67-
$COMPOSE up -d "api-${NEXT}"
66+
echo "2. Starting $NEXT + nginx..."
67+
$COMPOSE up -d "api-${NEXT}" nginx
6868

6969
echo "3. Health check on api-${NEXT}..."
7070
if ! health_check "$NEXT"; then

0 commit comments

Comments
 (0)