Mavis
Mavis
TTypebot
Created by Mavis on 3/24/2025 in #help-and-questions
Claude Sonnet
Thanks
3 replies
TTypebot
Created by Mavis on 12/11/2024 in #help-and-questions
Integration with OpenAI
Thnaks
9 replies
TTypebot
Created by Mavis on 12/11/2024 in #help-and-questions
Integration with OpenAI
No description
9 replies
TTypebot
Created by Mavis on 12/11/2024 in #help-and-questions
Integration with OpenAI
Yes, I've done these steps
9 replies
TTypebot
Created by Mavis on 12/11/2024 in #help-and-questions
Integration with OpenAI
No description
9 replies
TTypebot
Created by Mavis on 8/6/2024 in #help-and-questions
Iframe
Evolution API worked, now I'm trying to do with Typebot
11 replies
TTypebot
Created by Mavis on 8/6/2024 in #help-and-questions
Iframe
It's a customer's request. He wants his customers to not have to navigate between chatwoot, typebot and evolution api. He wants to concentrate all on a single site.
11 replies
TTypebot
Created by Mavis on 8/6/2024 in #help-and-questions
Iframe
But not the flow, the builder typebot interface/site
11 replies
TTypebot
Created by Mavis on 8/6/2024 in #help-and-questions
Iframe
like this:
export default function TypebotIframe() {
return (
<div style={{ width: '100%', height: '100vh' }}>
<iframe
src=" "
style={{ width: '100%', height: '100%', border: 'none' }}
title="Typebot"
>
</iframe>
</div>
);
}
export default function TypebotIframe() {
return (
<div style={{ width: '100%', height: '100vh' }}>
<iframe
src=" "
style={{ width: '100%', height: '100%', border: 'none' }}
title="Typebot"
>
</iframe>
</div>
);
}
11 replies
TTypebot
Created by Mavis on 8/6/2024 in #help-and-questions
Iframe
using Iframe
11 replies
TTypebot
Created by Mavis on 8/6/2024 in #help-and-questions
Iframe
Typebot to a website
11 replies
TTypebot
Created by Mavis on 7/25/2024 in #help-and-questions
Ngrok
Thanks, worked
11 replies
TTypebot
Created by Mavis on 7/25/2024 in #help-and-questions
Ngrok
Sure
version: '3.3'

volumes:
typebot_db_data:

services:
typebot-db:
image: postgres:14-alpine
restart: always
volumes:
- typebot_db_data:/var/lib/postgresql/data
environment:
- POSTGRES_USER=postgres
- POSTGRES_DB=typebot
- POSTGRES_PASSWORD=159753
ports:
- '5433:5432'

typebot-builder:
image: baptistearno/typebot-builder:latest
restart: always
depends_on:
- typebot-db
ports:
- '8080:3000'
extra_hosts:
- 'host.docker.internal:host-gateway'
env_file: .env

typebot-viewer:
image: baptistearno/typebot-viewer:latest
restart: always
ports:
- '8081:3000'
env_file: .env
version: '3.3'

volumes:
typebot_db_data:

services:
typebot-db:
image: postgres:14-alpine
restart: always
volumes:
- typebot_db_data:/var/lib/postgresql/data
environment:
- POSTGRES_USER=postgres
- POSTGRES_DB=typebot
- POSTGRES_PASSWORD=159753
ports:
- '5433:5432'

typebot-builder:
image: baptistearno/typebot-builder:latest
restart: always
depends_on:
- typebot-db
ports:
- '8080:3000'
extra_hosts:
- 'host.docker.internal:host-gateway'
env_file: .env

typebot-viewer:
image: baptistearno/typebot-viewer:latest
restart: always
ports:
- '8081:3000'
env_file: .env
11 replies
TTypebot
Created by Mavis on 7/25/2024 in #help-and-questions
Ngrok
Or if theres another tools than Ngrok that can I use for the same purpose
11 replies