This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
import globalConfigMixin from 'shared/mixins/globalConfigMixin'; | |
const { | |
LOGO_THUMBNAIL: logoThumbnail, | |
BRAND_NAME: brandName, | |
WIDGET_BRAND_URL: widgetBrandURL, | |
} = window.globalConfig || {}; | |
export default { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Guía paso a paso para desarrollar AI Builderbot | |
Aquí tienes una guía clara y sencilla que puedes compartir con tu programador junior para implementar la aplicación AI Builderbot: | |
Fase 1: Preparación del proyecto | |
Crear el proyecto base | |
Inicia un nuevo proyecto de Next.js con soporte para React y TailwindCSS | |
Organiza la estructura de carpetas para separar componentes, páginas y estilos | |
Configuración inicial | |
Asegúrate de que TailwindCSS esté correctamente configurado | |
Establece los colores y temas principales de la aplicación | |
Implementa la fuente "Inter" de Google Fonts como fuente principal de toda la aplicación |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "Gestionar Leads", | |
"nodes": [ | |
{ | |
"parameters": { | |
"authentication": "nocoDbApiToken", | |
"operation": "getAll", | |
"workspaceId": "w3ec7sio", | |
"projectId": "pu3qowvlwu121f9", | |
"table": "myexlxkv6mt86w9", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Crear una landing page diseño "pixel perfect" con muy buena UX/UI con transiciones modernas, inspirate los detalles de la captura de la landing que adjunte quiero que sea igual o casi igual, video en el centro que tiene un efecto hover, usa una imagen de upsplash que sirva como cover de un video. standard 16:9 aspect ratio.standard 16:9 aspect ratio. | |
Key Design Elements: | |
Clean, minimal design with lots of whitespace | |
Soft, mint/sage green background (#F7F9F8) | |
Modern typography with a bold headline and subtle descriptive text | |
Centered video player with hover effects and rounded corners | |
Small "Updated" badge with subtle styling | |
Professional navigation bar with clear hierarchy |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=Mi Contenedor Docker | |
Requires=docker.service | |
After=docker.service | |
[Service] | |
Type=oneshot | |
RemainAfterExit=yes | |
ExecStart=/usr/bin/docker start nombre_contenedor | |
ExecStop=/usr/bin/docker stop nombre_contenedor |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Verificar si se ejecuta como root | |
if [ "$(id -u)" != "0" ]; then | |
echo "Este script debe ejecutarse como root (sudo)" | |
exit 1 | |
fi | |
echo "Iniciando configuración del daemon de Docker..." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"options": { | |
"listenKeywords": false | |
}, | |
"uuid": "__LINK_0__", | |
"name": "Bienvenida y Ofertas Iniciales", | |
"label": "Nuevo Flow", | |
"sort": 0, | |
"sensitive": false, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"uuid": "__LINK_0__", | |
"name": "CAL/Pregunta Fecha", | |
"label": "Nuevo Flow", | |
"sort": 0, | |
"sensitive": false, | |
"keyword": [ | |
"EVENTS.ACTION" | |
], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { createBot, createProvider, createFlow, addKeyword } from '@builderbot/bot' | |
import { MemoryDB as Database } from '@builderbot/bot' | |
import { TelegramProvider as Provider } from '@builderbot-plugins/telegram' | |
const PORT = process.env.PORT ?? 3008 | |
const welcomeFlow = addKeyword<Provider, Database>(['hi', 'hello', 'hola']) | |
.addAnswer(`🙌 Hello welcome to this *Chatbot*`) | |
.addAnswer( | |
[ | |
'I share with you the following links of interest about the project', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"uuid": "__LINK_0__", | |
"name": "AI: Asistente", | |
"label": "Nuevo Flow", | |
"sort": 0, | |
"sensitive": false, | |
"keyword": [ | |
"EVENTS.ACTION" | |
], |
NewerOlder