DEV Community

Discussion on: How to keep your Firebase project safe and secure from everyone

Collapse
 
sarveshtheabstractor profile image
Sarvesh Hiwase

is using environment variables for firebase config sufficient for security purposes or do they get exposed anywhere?

Collapse
 
retronav profile image
Pranav Karawale

Hi Sarvesh,
Assuming you're using environment variables in CI jobs, it is perfectly abstracted from the public. You need not worry getting them leaked. Its perfectly fine to store it in environment variables.

Collapse
 
sarveshtheabstractor profile image
Sarvesh Hiwase

Thanks brother, now I will be exploring firebase security deep down