informatica:software:aplicaciones_web:4ga_boards
Diferencias
Muestra las diferencias entre dos versiones de la página.
| Próxima revisión | Revisión previa | ||
| informatica:software:aplicaciones_web:4ga_boards [2025/10/07 11:31] – creado tempwin | informatica:software:aplicaciones_web:4ga_boards [2025/10/07 11:49] (actual) – tempwin | ||
|---|---|---|---|
| Línea 1: | Línea 1: | ||
| ====== 4ga Boards ====== | ====== 4ga Boards ====== | ||
| - | Aplicación web para la gestión colaborativa de proyectos mediante tableros Kanban en tiempo real, con actualizaciones en tiempo real sin necesidad de recargar la página. | + | [[..: |
| * [[https:// | * [[https:// | ||
| * [[https:// | * [[https:// | ||
| + | * [[https:// | ||
| {{ https:// | {{ https:// | ||
| Línea 19: | Línea 20: | ||
| * Jerarquía multinivel: proyectos → tableros → listas → tarjetas → tareas | * Jerarquía multinivel: proyectos → tableros → listas → tarjetas → tareas | ||
| * Sincronización bidireccional con GitHub (próximamente) | * Sincronización bidireccional con GitHub (próximamente) | ||
| + | |||
| + | ===== Instalación ===== | ||
| + | |||
| + | ==== Docker ==== | ||
| + | |||
| + | Ejemplo de fichero Docker Compose: | ||
| + | |||
| + | <code yaml> | ||
| + | # https:// | ||
| + | |||
| + | services: | ||
| + | db: | ||
| + | image: postgres: | ||
| + | restart: always | ||
| + | networks: | ||
| + | - boards-network | ||
| + | volumes: | ||
| + | - db-data:/ | ||
| + | environment: | ||
| + | POSTGRES_DB: | ||
| + | POSTGRES_PASSWORD: | ||
| + | POSTGRES_INITDB_ARGS: | ||
| + | healthcheck: | ||
| + | test: [' | ||
| + | interval: 1s | ||
| + | timeout: 5s | ||
| + | retries: 50 | ||
| + | |||
| + | 4gaBoards: | ||
| + | image: ghcr.io/ | ||
| + | restart: always | ||
| + | networks: | ||
| + | - boards-network | ||
| + | volumes: | ||
| + | - user-avatars:/ | ||
| + | - project-background-images:/ | ||
| + | - attachments:/ | ||
| + | ports: | ||
| + | - 3000:1337 | ||
| + | environment: | ||
| + | BASE_URL: http:// | ||
| + | SECRET_KEY: notsecretkey | ||
| + | DATABASE_URL: | ||
| + | NODE_ENV: production | ||
| + | ## Add optional 4ga Boards instance variables here | ||
| + | depends_on: | ||
| + | db: | ||
| + | condition: service_healthy | ||
| + | |||
| + | volumes: | ||
| + | user-avatars: | ||
| + | project-background-images: | ||
| + | attachments: | ||
| + | db-data: | ||
| + | networks: | ||
| + | boards-network: | ||
| + | </ | ||
| + | |||
| + | Tras desplegar la aplicación, | ||
| + | |||
| + | * Usuario: '' | ||
| + | * Contraseña: | ||
| + | |||
| + | <WRAP center round important 60%> | ||
| + | Importante cambiar la contraseña del usuario por defecto porque tiene permisos de administrador. | ||
| + | </ | ||
| + | |||
informatica/software/aplicaciones_web/4ga_boards.1759829491.txt.gz · Última modificación: por tempwin
