Admin: Seed data
This seeds workspaces and theses (Atta/Carao) into Firestore if your rules allow it. It also keeps localStorage as fallback.
Firebase configured:
yes · projectId: studio-1492148876-563c3Dev rules tip (temporary): allow authenticated users to write
workspaces, theses, and investors.match /workspaces/{id} { allow read: if request.auth != null; allow write: if request.auth != null; }
match /theses/{id} { allow read: if request.auth != null; allow write: if request.auth != null; }
match /investors/{id} { allow read: if request.auth != null; allow write: if request.auth != null; }
match /startupProfiles/{id} { allow read, write: if request.auth != null; }Deploy rules in the Firebase Console or CLI. Remove/lock down before prod.