Questions tagged [firebase]
The firebase tag has no summary.
9 questions
3
votes
1
answer
553
views
How do I handle two apps for a single Firebase Project?
I have two apps for one Firebase project. One is a Vue 3 web app and the other is a NativeScript one. Currently, they reside in separate project directories and GitHub repositories. I don't want to ...
0
votes
1
answer
216
views
Why do many developers use 3rd party provider for notifications instead of rolling their own? [closed]
I have built many desktop, mobile and web apps, but have never needed to implement push notifications, now I'm working on an app that requires push notifications, researching revealed that many ...
2
votes
1
answer
116
views
What is the correct way to configure a testing mode on a class?
I have a repository which reads and writes to Firestore, and some tests to make sure data is sent and comes back in the correct way.
In order to test this I added a protected function which returns ...
1
vote
0
answers
74
views
How to merge SQL Server database authentication with firebase authentication?
I have Firebase connected to my web app and users can authenticate using the 'microsoft' provider. The provider only allows authenticating with the active directory tenant that I specified in my ...
0
votes
1
answer
223
views
Firebase Auth system with Rails API design
TLDR; How can I utilize Firebase Auth in my iOS application and sync the Firebase ID with a user in my API?
I am in the process of designing an iOS application that reads from a Rails API. When first ...
1
vote
1
answer
122
views
How do I store reported comments/photos in firestore?
I want to learn firestore and to this end I created small project which replicates instagram. Not all functionalities of course, just the very basics - photo sharing, comments and the possibility to ...
1
vote
1
answer
231
views
Thoughts on adding a DB collection with a single record for version
I'm building an application with Google Firebase and Firestore that has its structure defined in the DB.
This structure is not very big and doesn't change all that often. This structure is stored in ...
-1
votes
1
answer
193
views
Loading in and Autocompleting a CSV File React
I'm currently working on a React Application with Firebase that involves a ton of data manipulation and reading. One specific feature is the ability to autofill a form based on a very large CSV file (...
0
votes
1
answer
529
views
Can modeling Firestore using CQRS concept will prevent from Firebase locked-in?
I decided to go with Firestore to our new project.
The goal is I don't want our server logics and database designs are locked-in by Cloud Function and Firestore, And also long-term maintainability.
...