Get Started
Quick Start
Quick Start Guide
Get Conseto running on your website in under 2 minutes. This guide covers the minimal setup.
Prerequisites
You need a Conseto account and your Client ID. Sign up at app.conseto.io to get started.
Step 1: Add the Script
Add the following script tag before the closing </head> tag:
html
<!-- Conseto - Site Growth Platform -->
<script src="https://www.conseto.io/dist/conseto.min.js"></script>
<script>
Conseto.init({ clientId: 'YOUR_CLIENT_ID' });
</script>That's it! Analytics will start tracking automatically. The consent banner will appear based on visitor location.
Step 2: Verify Installation
Open your website and check the browser console. You should see:
text
[Conseto] Initialized v2.0 — Client: conseto_yoursite_xxx
[Conseto] Analytics: tracking
[Conseto] Consent: banner ready (GDPR mode)You can also verify in your dashboard at app.conseto.io — you should see real-time visitors appearing within seconds.
Step 3: Optional Configuration
Enhance your setup with these popular options:
javascript
Conseto.init({
clientId: 'YOUR_CLIENT_ID',
// Consent banner
language: 'en', // Banner language
theme: 'light', // 'light' or 'dark'
// Analytics integrations
ga4: 'G-XXXXXXX', // Google Analytics 4
gtm: 'GTM-XXXXXX', // Google Tag Manager
// E-commerce
autoTrackEcommerce: true // Auto-detect cart & purchase events
});