Add initial project setup with Vite, Mantine, and Docker configuration

This commit is contained in:
2025-03-17 22:39:45 +01:00
parent 1a49b8676f
commit 76384a9eca
54 changed files with 11005 additions and 83 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/bin/bash
# Actualizar repositorios
echo "Actualizando repositorios..."
apt-get update
# Instalar venv si no está disponible
if ! python3 -m venv --help &> /dev/null; then
echo "Instalando venv..."
apt-get install -y python3-venv
fi
# Crear un entorno virtual llamado 'venv'
echo "Creando entorno virtual 'venv'..."
python3 -m venv /app/venv
echo "Entorno virtual 'venv' creado exitosamente."