-
Notifications
You must be signed in to change notification settings - Fork 0
/
deploy.sh
executable file
·59 lines (48 loc) · 1.37 KB
/
deploy.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/bin/bash
# Colores para los mensajes
GREEN='\033[0;32m'
BLUE='\033[0;34m'
NC='\033[0m' # No Color
# Función para imprimir mensajes con formato
print_step() {
echo -e "${BLUE}==>${NC} ${GREEN}$1${NC}"
}
# Cargar variables de entorno desde .env
print_step "Cargando variables de entorno desde .env..."
if [ ! -f ".env" ]; then
echo "Error: No se encontró el archivo .env"
exit 1
fi
# Exportar todas las variables del archivo .env
export $(cat .env | grep -v '^#' | xargs)
# Verificar que las variables necesarias estén configuradas
print_step "Verificando variables de entorno..."
ENV_VARS=(
"VITE_FIREBASE_API_KEY"
"VITE_FIREBASE_AUTH_DOMAIN"
"VITE_FIREBASE_PROJECT_ID"
"VITE_FIREBASE_STORAGE_BUCKET"
"VITE_FIREBASE_MESSAGING_SENDER_ID"
"VITE_FIREBASE_APP_ID"
)
for var in "${ENV_VARS[@]}"; do
if [ -z "${!var}" ]; then
echo "Error: La variable $var no está configurada en el archivo .env"
exit 1
fi
done
# Instalar dependencias
print_step "Instalando dependencias..."
npm install
# Construir el proyecto
print_step "Construyendo el proyecto..."
npm run build
# Verificar que la carpeta dist existe
if [ ! -d "dist" ]; then
echo "Error: La carpeta dist no se creó correctamente"
exit 1
fi
# Desplegar a Firebase
print_step "Desplegando a Firebase..."
firebase deploy --only hosting
print_step "¡Despliegue completado!"