Firebase Remote Config now supports server-side configuration using the Firebase Admin Node.js SDK v12.1.0+. This new capability empowers you to dynamically manage the behavior and configuration of server-side applications using Remote Config. This includes serverless implementations like Cloud Functions.
Unlike Firebase client SDKs, which fetch a client-specific configuration derived from the Remote Config template, the server-side Remote Config SDK downloads a complete Remote Config template from Firebase. Your server can then evaluate the template with each incoming request and use its own logic to serve a customized response with very low latency. You can use conditions to control and customize responses based on random percentages and client attributes defined in custom signals.
With server-side Remote Config, you can:
- Define configuration parameters for applications running on or accessed through your server, allowing for use cases like remotely configuring AI model parameters and prompts and other integrations, to ensure your API keys stay secure.
- Dynamically adjust parameters in response to changes in your environment or other application changes, like updating LLM parameters and model endpoints.
- Control costs by remotely updating the APIs your server calls.
- Generate custom configurations on-the-fly for clients that access your server.
- Record which clients received a parameter value and use this in Cloud Functions as part of an entitlement verification system.
You can deploy server-side Remote Config on Cloud Run, Cloud Functions, or self-hosted server environments.
Before you begin
Follow the instructions in Add the Firebase Admin SDK to your server to create a Firebase project, set up a service account, and add the Firebase Admin Node.js SDK to your server.
Step 1: Initialize the Firebase Admin Node.js SDK and authorize API requests
When you initialize the Admin SDK with no parameters, the SDK uses Google
Application Default
Credentials
and reads options from the GOOGLE_APPLICATION_CREDENTIALS
environment
variable. For example, to initialize the SDK and add Remote Config:
import { initializeApp } from "firebase-admin/app";
import { getRemoteConfig } from "firebase-admin/remote-config";
// Initialize Firebase
const firebaseApp = initializeApp();
Step 2: Identify default parameter values for your server application
Identify the variables in your app that you want to dynamically update with Remote Config. Then, consider which variables must be set by default in your application and what their default values should be. This ensures that your application runs successfully even if its connection to the Remote Config backend server is interrupted.
For example, if you are writing a server application that manages a generative AI function, you might set a default model name, prompt preamble, and a generative AI configuration, like the following:
Parameter name | Description | Type | Default value |
---|---|---|---|
model_name |
Model API name | String | gemini-1.5-pro |
preamble_prompt
|
Prompt to prepend to the user's query | String | I'm a
developer who
wants to learn
about Firebase and
you are a helpful
assistant who
knows everything
there is to know
about Firebase! |
generation_config
|
Parameters to send to the model | JSON |
{"stopSequences":
["I hope this
helps"],
"temperature":
0.7,
"maxOutputTokens":
512, "topP": 0.1,
"topK": 20} |
Step 3: Configure your server application
After you've determined the parameters you want to use with Remote Config, configure your application to set default values, fetch the server-specific Remote Config template, and use its values. The following steps describe how to configure your Node.js application.
Access and load the template.
// Initialize server-side Remote Config const rc = getRemoteConfig(firebaseApp); const template = rc.initServerTemplate(); // Load Remote Config await template.load();
If you're using Node.js within a Cloud Functions, you can use the asynchronous
getServerTemplate
to fetch and load the template in a single step:// Initialize server-side Remote Config const rc = getRemoteConfig(firebaseApp); const template = await rc.getServerTemplate();
To ensure that your application runs successfully even if its connection to the Remote Config backend server is interrupted, add default values for each parameter to your app. To do this, add a
defaultConfig
inside yourinitServerTemplate
orgetServerTemplate
template function:const template = rc.initServerTemplate({ defaultConfig: { model_name: "gemini-pro", generation_config: '{"stopSequences": [], "temperature": 0.7, "maxOutputTokens": 512, "topP": 0.1, "topK": 20}', preamble_prompt: "I'm a developer who wants to learn about Firebase and you are a helpful assistant who knows everything there is to know about Firebase!" }, }); // Load Remote Config await template.load()
After the template loads, use
template.evaluate()
to import parameters and values from the template:// Add template parameters to config const config = template.evaluate();
Optionally, if you set conditions in your Remote Config template, define and provide the values you want:
- If using percentage
conditions,
add the
randomizationId
that you want to use to evaluate your condition(s) within thetemplate.evaluate()
function. - If using custom signals, define the attributes and their values. Custom signals are available with Firebase Admin Node.js SDK 12.5.0 and higher.
For example, you might set a Firebase installation ID as the
randomizationId
, or a user ID, to ensure that each user that contacts your server is added to the proper randomized group,version
as a custom signal to target specific client versions, andplatform
as a custom signal to target client platform.For more information about conditions, see Condition rule types.
// Add template parameters to `config`. Evaluates the // template and returns the parameter value assigned to // the group assigned to the {randomizationId} and version. const config = template.evaluate({ randomizationId: "2ac93c28-c459-4760-963d-a3974ec26c04", version: "1.0", platform: "Android" });
- If using percentage
conditions,
add the
Next, extract the parameter values you need from the config constant. Use
getters
to cast the values from Remote Config into the expected format. The following types are supported:- Boolean:
getBoolean
- Object:
getValue
- Number:
getNumber
- String:
getString
For example, if you are implementing Vertex AI on your server and want to change the model and model parameters, you might want to configure parameters for
model_name
andgenerationConfig
. Here's an example of how you could access Remote Config's values:// Replace defaults with values from Remote Config. const generationConfig = JSON.parse( config.getString('generation_config')); const is_ai_enabled = config.getBool('is_ai_enabled'); const model = config.getString('model_name'); // Generates a prompt comprised of the Remote Config // parameter and prepends it to the user prompt const prompt = `${config.getString('preamble_prompt')} ${req.query.prompt}`;
- Boolean:
If your server is long-running, as opposed to a serverless environment, use
setInterval
to periodically reload the template to ensure that you're periodically fetching the most up-to-date template from the Remote Config server.
Step 4: Set server-specific parameter values in Remote Config
Next, create a server Remote Config template and configure parameters and values to use in your app.
To create a server-specific Remote Config template:
- Open the Firebase console Remote Config parameters page and, from the Client/Server selector, select Server.
- Define Remote Config parameters with the same names and data types as
the parameters that you defined in your app and provide values. These
values will override the
defaultConfig
you set in Configure your server application when you fetch and evaluate the template and assign these values to your variables. - Optionally, set conditions to persistently apply values to a random sample of instances or custom signals you define. For more information about conditions, see Condition rule types.
- When you've finished adding parameters, click Publish changes.
- Review the changes and click Publish changes again.
Step 5: Deploy with Cloud Functions or Cloud Run
If your server application is lightweight and event-driven, you should consider deploying your code using Cloud Functions. For example, say you have an app that includes character dialogue powered by a generative AI API (for example, Google AI or Vertex AI). In this case, you could host your LLM-serving logic in a function that your app calls on-demand.
To work through a solution that uses 2nd gen Cloud Functions with server-side Remote Config, see Use server-side Remote Config with Cloud Functions and Vertex AI.
To learn more about deploying your app with Cloud Functions, see Get started: write, test, and deploy your first functions.
Try out a sample callable function with server-side Remote Config and App Check at Call the Vertex AI Gemini API with Remote Config and App Check.
If your application is intended to be long-running (for example, a web app with assets), you might consider Cloud Run. To deploy your server app with Cloud Run, follow the guide at Quickstart: Deploy a Node.js service to Cloud Run.
For more information about the best use cases for Cloud Run and Cloud Functions, refer to Cloud Functions vs. Cloud Run: when to use one over the other.