Allaway Operations ✦
Loading your clients and events...
Connect Allaway
One-time setup — your data syncs live across all devices once connected.
1
Create your free Supabase database
- Go to supabase.com and sign up free
- Click New Project — name it "allaway"
- In the left sidebar click SQL Editor → New query
- Paste the code below and click Run
CREATE TABLE schedule (
id INTEGER PRIMARY KEY,
data JSONB
);
ALTER TABLE schedule ENABLE ROW LEVEL SECURITY;
CREATE POLICY "Allow all" ON schedule
FOR ALL USING (true) WITH CHECK (true);
2
Paste your two connection values
In Supabase: Settings ⚙ → API → copy Project URL and anon/public key
Should start with https:// and end with .supabase.co
Long string starting with eyJ...