minguezsanzjuanjose 9dd97b34f2
All checks were successful
DEPLOY_MULTI_BRACH/pipeline/head This commit looks good
fix
2026-04-14 01:00:37 +02:00
fix
2026-04-14 01:00:37 +02:00
fix
2026-04-14 01:00:37 +02:00
fix
2026-04-14 01:00:37 +02:00
fix
2026-04-14 01:00:37 +02:00
2026-04-12 22:11:51 +02:00
2026-04-11 03:31:05 +02:00
fix
2026-04-14 01:00:37 +02:00
2026-04-11 13:00:25 +02:00
2026-04-11 13:00:25 +02:00
2026-04-11 03:31:05 +02:00
fix
2026-04-14 01:00:37 +02:00

django-core-base

// V-Encore Lab: Sistema Automatizado v1.0.4

🚀 Inicio Rápido (Desarrollo Local)

1. Clonar y Configurar

git clone https://git.v-encore-lab.com/Proyecto-SaaS/django-core-base.git
cd django-core-base
cp .env.example .env

2. Instalar Dependencias

pip install -r deployments/requirements.txt

3. Migraciones de Base de Datos

# Crear y aplicar migraciones para todos los modelos
python manage.py makemigrations
python manage.py migrate

# Opcional: Crear superusuario
python manage.py createsuperuser

4. Correr el Servidor

python manage.py runserver

Abrir http://localhost:8000

🐳 Docker (Producción/Desarrollo)

docker-compose up --build

Acceder a:

📋 Comandos Django Comunes

# Verificar configuración
python manage.py check

# Recopilar static files
python manage.py collectstatic --noinput

# Test
python manage.py test

🔧 Estructura del Proyecto

├── apps/              # Aplicaciones Django
│   ├── backend_admin/
│   ├── common/
│   └── promociones/
├── core/              # Configuración principal
├── deployments/       # Docker, requirements prod
└── manage.py

.env Variables

Ver .env.example para configuración.

Description
No description provided
Readme 20 MiB
Languages
Python 89.4%
TypeScript 5.9%
Shell 2.3%
Dockerfile 1.8%
HTML 0.6%