Build Interactive Chat Forms with Typebot
Typebot is the open-source conversational forms builder that's transforming how we collect data and interact with users online! ๐พ In this screencast, we're showing you how to use Typebot to create a unique chat experience, specifically focusing on building a ๐ถ dog insurance estimator. Whether you're a pet insurance company, a business owner, or just curious about interactive forms, this video is for you!
Formable can self-host a Typebot container instance for your team. Your team can then create unlimited bots. By self-hosting your business owns any personal or marketing data collected by Typebot. If you use integrations like Open AI with Typebot your private key is also then kept safe on your own server. Formable manages and updates Typebot so your team can take advantage of new features as they are released by the open source project.
Formable's Typebot Portainer stack docker-compose.yml
services:
typebot-db:
image: postgres:16
restart: always
volumes:
- db-data:/var/lib/postgresql/data
environment:
- POSTGRES_DB=typebot
- POSTGRES_PASSWORD=typebot
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 5s
timeout: 5s
retries: 5
typebot-builder:
image: baptistearno/typebot-builder:latest
restart: always
depends_on:
typebot-db:
condition: service_healthy
ports:
- 48080:3000
extra_hosts:
- 'host.docker.internal:host-gateway'
env_file: stack.env
typebot-viewer:
image: baptistearno/typebot-viewer:latest
depends_on:
typebot-db:
condition: service_healthy
restart: always
ports:
- 48081:3000
env_file: stack.env
volumes:
db-data:
Managed Self Hosted Typebot
Formable sets up, monitors and updates your cloud applications.