I am doing my first commit of a Flutter app to a public repository on my GitHub account. It utilizes Firebase Auth and Firestore. Are there any sensitive files / keys that I should worry about hiding/securing? Such as the google-services.json file? If so, do I just need to use the .gitignore
file?
Asked
Active
Viewed 308 times
1

NetizenX
- 11
- 4
-
1Yes, [`.gitignore`](https://git-scm.com/docs/gitignore) is the right tool for excluding files from being tracked. – jsejcksn May 04 '22 at 22:38
-
I appreciate that. Having kept everything private to this point, I am nervous about exposing anything sensitive. – NetizenX May 04 '22 at 23:09