This will be recorded against the quote for audit.
Please enter a reason to proceed.
CancelConfirm & Generate PDF
×
🛠 Admin Panel
×
🚀 How to set up Supabase (5 minutes)
Supabase is a free database that stores all your quotes online. Every laptop in the team connects to the same database — quotes saved on one laptop appear on all others.
1
Go to supabase.com and create a free account. Click "New Project", choose a name like "ZW Quotes" and set a database password.
2
Once the project is ready, go to Project Settings → API. Copy the Project URL and the anon / public key.
3
Go to the SQL Editor in Supabase and run this query to create the quotes table:
CREATE TABLE quotes (
id uuid DEFAULT gen_random_uuid() PRIMARY KEY,
lead_id text,
bride_name text,
groom_name text,
sales_person text,
wedding_date text,
events text,
location text,
offer_price text,
package_price text,
status text DEFAULT 'draft',
version_number integer DEFAULT 1,
state_json jsonb,
created_at timestamptz DEFAULT now(),
updated_at timestamptz DEFAULT now()
);
CREATE TABLE sales_team (
id uuid DEFAULT gen_random_uuid() PRIMARY KEY,
name text UNIQUE NOT NULL,
created_at timestamptz DEFAULT now()
);
-- Allow full access (tool uses anon key behind password)
ALTER TABLE quotes ENABLE ROW LEVEL SECURITY;
ALTER TABLE sales_team ENABLE ROW LEVEL SECURITY;
CREATE POLICY "allow_all" ON quotes FOR ALL USING (true) WITH CHECK (true);
CREATE POLICY "allow_all" ON sales_team FOR ALL USING (true) WITH CHECK (true);Copy
4
Click "⚙ Configure" in the quote tool and paste the Project URL and anon key. Click Save & Connect.
5
That's it! 🎉 The tool will now save and load quotes. Share the same URL + key with all team members.
Go to Configure →Close
📅 Live Schedule Configuration
Connect your Zoho Sheet so the tool always uses up-to-date booking data for tier detection, Muhurtham logic, and Out of Chennai feasibility checks.
How to publish your Zoho Sheet as CSV (2 minutes):
1
Open your schedule Zoho Sheet. Go to File → Publish to Web.
2
Select the correct sheet tab. Choose format: CSV. Click Publish.
3
Copy the published URL — it looks like: https://sheet.zoho.com/sheet/published/...
4
Paste it below. The tool will fetch the latest data every time it loads.