Skip to content

Commit

Permalink
fix(#108): ajustando path pasta
Browse files Browse the repository at this point in the history
  • Loading branch information
paulohgontijoo committed Aug 13, 2024
1 parent 5a95db9 commit 5044a07
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions scripts/deploy/deploy_back.sh
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
#!/bin/bash

SESSION_NAME="npm_run_session"
SESSION_NAME="backend-session"
ENV="dev"
DIR1="/home/Calculus-admin1/app/2024.1-CALCULUS-Frontend"
DIR1="/home/Calculus-admin1/app/2024.1-CALCULUS-UserService"

# Comandos renomeados para refletir a ordem de execução
CMD1="git fetch"
CMD2="git checkout $ENV"
CMD3="git pull origin $ENV"
CMD4="npm install"
CMD5="npm run start &"
CMD6="echo Starting Deploy Front"
CMD5="npm run start"
CMD6="echo Starting Deploy backend"

# Função para iniciar a sessão tmux e executar comandos
start_tmux_session() {
Expand All @@ -28,13 +28,15 @@ start_tmux_session() {
tmux send-keys -t $SESSION_NAME "$CMD6" C-m

# Anexar à sessão tmux para visualizar os comandos em execução
# tmux attach-session -t $SESSION_NAME
}

# Função para executar o health check
run_healthcheck() {
PORT=3000
CHECK_INTERVAL=5

echo "Deploy backend iniciado"
echo "Iniciando health check para a porta $PORT..."

while true; do
Expand All @@ -44,6 +46,7 @@ run_healthcheck() {
# Verifica se há algum resultado
if [ -n "$OUTPUT" ]; then
echo "A porta $PORT está em uso. Encerrando o health check."
echo "Deploy realizado com sucesso!"
break
else
echo "A porta $PORT não está em uso. Verificando novamente em $CHECK_INTERVAL segundos..."
Expand Down

0 comments on commit 5044a07

Please sign in to comment.