From fa9650d0b80eb6bee3eecfe973147a1f960a2b45 Mon Sep 17 00:00:00 2001 From: fullsizemalt <106900403+fullsizemalt@users.noreply.github.com> Date: Thu, 8 Jan 2026 01:26:11 -0800 Subject: [PATCH] fix(deploy): Remove line numbers from env file generation --- deploy.sh | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/deploy.sh b/deploy.sh index 0cecfad..60ded76 100755 --- a/deploy.sh +++ b/deploy.sh @@ -118,14 +118,14 @@ if [ "$HAS_ENV" = "no" ]; then ssh "$USER@$HOST" "cat > $ENV_FILE << EOF # Database -109: DB_PASSWORD=${DB_PASSWORD} -110: -111: # JWT -112: JWT_SECRET=${JWT_SECRET} -113: -114: # Environment -115: NODE_ENV=production -116: PORT=${PORT} +DB_PASSWORD=${DB_PASSWORD} + +# JWT +JWT_SECRET=${JWT_SECRET} + +# Environment +NODE_ENV=production +PORT=${PORT} EOF" echo -e "${GREEN}✓ Environment file created${NC}" echo -e "${YELLOW}IMPORTANT: New secrets generated on $HOST.${NC}"