Consistencia visual dos quadrinhos (estilo fofo 2 a 6 anos), correcao de narracao em video e 22 trilhas com preview

This commit is contained in:
2026-09-01 02:20:21 +00:00
parent b35f817e45
commit 10cca214e0
24 changed files with 333 additions and 92 deletions
+11 -5
View File
@@ -27,9 +27,15 @@ fi
COOLIFY_RESOURCE_UUID="zzmj37ya8lmntomh3bm8rivi"
COOLIFY_TOKEN="12|wbepNILQe24LAOjfEUmMROgU93F6uG1zuwPLwrRi786bca03"
echo -e "${YELLOW}🔄 Disparando Deploy na Coolify...${NC}"
curl -s -X GET "https://painel.reifonas.cloud/api/v1/deploy?uuid=${COOLIFY_RESOURCE_UUID}&force=false" \
-H "Authorization: Bearer $COOLIFY_TOKEN"
echo -e "\n${GREEN}✅ Deploy engatilhado com sucesso!${NC}\n"
# 3. Sincronização pós-deploy do .env no container em background
(
sleep 45
CONTAINER_ID=$(docker ps --filter "name=zzmj37ya8lmntomh3bm8rivi" --format "{{.ID}}" | head -n 1)
if [ -n "$CONTAINER_ID" ]; then
docker cp /root/Apps/Camila/.env "$CONTAINER_ID":/app/.env 2>/dev/null
docker restart "$CONTAINER_ID" 2>/dev/null
fi
) >/dev/null 2>&1 &