Set up a Firebase project
Rowy connects to your existing Firebase projects. Your projects must have Firestore and Authentication enabled.
Create a new project in the Firebase Console.
Create a Firestore database in the Firebase Console.
Firebase instructions ↗Set up Firestore Security Rules. You can use test mode for now.
Alternatively, you could allow unlimited access to the entire database for testing. Once you have created your database, paste the following code in the Rules tab:
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
match /{document=**} {
allow read, write: if true;
}
}
}
Enable Firebase Authentication in the Firebase Console.
Enable the Google sign-in method in the Sign-in method tab.
Firebase instructions ↗Optional: In the bottom-left corner, upgrade your project to the Blaze Plan.
This is required to deploy Rowy Run and any Cloud Functions. The free Spark Plan limits are generous and you likely won’t pay anything.