This guide covers setting up HTTP tunnels to expose your local development environment to the internet, essential for testing webhooks and OAuth integrations.
You need access to the HeyBilly Cloudflare account:
Copy
Ask AI
# Login to Cloudflare (requires account access)cloudflared tunnel login# This will open a browser window for authentication# Contact @spyl-pennylane for access to the HeyBilly account
# Create a new tunnelcloudflared tunnel create your-name# Replace "your-name" with your preferred identifier# Example: cloudflared tunnel create john-dev
# Start your tunnelcloudflared tunnel --config=.cloudflared/your-name.yml run your-name# Update webhook URLs in external services to use:# https://your-name.tunnels.heybilly.io/webhooks/[service]
# Check DNS resolutionnslookup your-name.tunnels.heybilly.io# Recreate DNS route if neededcloudflared tunnel route dns your-name your-name.tunnels.heybilly.io
# Run with debug informationcloudflared tunnel --config=.cloudflared/your-name.yml run your-name --loglevel debug# Check tunnel statuscloudflared tunnel info your-name
# Check tunnel statuscloudflared tunnel info your-name# View tunnel metricscloudflared tunnel metrics your-name# List active tunnelscloudflared tunnel list