Add initial setup scripts and configuration files for development environment

This commit is contained in:
2025-03-03 00:24:07 +01:00
parent 92d53d9c1c
commit f33b76ac38
15 changed files with 1365 additions and 0 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."