Have production and development environment variables

This is how you would have production and development environment variables in a JavaScript nodejs app. I have a back-end nodejs app where I want to connect to a local MySQL server, and when deploying the app to Google Cloud App Engine; have my production settings instead. First, try and see if you have already …

Create a Google Firebase Function which sends out email to new users with a beautiful template

Let us create firebase function for sending out email if there is a new user logging in through our Firebase app. To do this you should have a Firebase authentication set up already for an app. We are sending out the mail to new users with the help of a gmail account. We are also …