Install FAQBot
Add an AI-powered FAQ chatbot to your Shopify, WooCommerce, or Squarespace store in under five minutes.
Shopify
$shopify app init faqbot --template https://github.com/faqbot/shopify-template Requires Shopify CLI v3.x. Authenticate with `shopify auth login` before initializing.
shopify app dev to verify.
WooCommerce
$wp plugin install faqbot-woocommerce --activate Requires WordPress 6.0+ and WooCommerce 7.0+. Configure API keys under WooCommerce > Settings > FAQBot.
wp faqbot status to verify.
npm
$npm install @faqbot/sdk && npx faqbot init For custom storefronts or headless implementations. Requires Node.js 18+.
npx faqbot --version to verify.
Docker
$docker run -e FAQBOT_API_KEY=your_key faqbot/app:latest Self-host on your own infrastructure. Exposes port 3000 by default.
curl http://localhost:3000/health to verify.
Verify Install
bash
```bash
# After installation, confirm connectivity:
faqbot doctor
# Expected output:
# ✓ API key validated
# ✓ Store connection established
# ✓ Widget snippet injected
# ✓ Health check passed
```