Deploying to Production (5m)

Let's deploy your react app with GT.

Overview

This is a short tutorial to help you deploy your react app with GT.

We will do this in 3 steps:

Add your production API keys.

Run the init command to configure your project.

Share your configuration with your app.

Add the translate command to your build script.

Prerequisites

Make sure that you have followed the Quick Start Guide to set up your react app with GT.

Step 1: Switch to your production API keys 🔑

Add your production API key and Project ID to your production environment variables.

From your dashboard, go to API Keys in the sidebar. Click on Create API Key, and add them to your production envrionment.

GT_API_KEY="YOUR_GT_API_KEY"
GT_PROJECT_ID="YOUR_GT_PROJECT_ID"

Protect Your API Keys!

Production keys should only ever be used in production. Likewise, development keys should only ever be used in development. Never commit your API keys to a public repository!

Step 2: Run the init command 🔧

Run the init command to configure your project.

npx gtx-cli init

If you do not want your translations to be hosted on the GT CDN, select "Local" when asked where your language files are stored. You will also need to configure the loadTranslations() function.

Step 3: Share your configuration with your app ⚙️

The init command will generate a configuration file in the root.

Pass the config file to <GTProvider>. If you have specified any locales in your provider, remove them. The configuration file will take care of that.

src/App.js
import { GTProvider } from "gt-react";
import MyApp from "./MyApp";
import config from "../gt.config.json";  
 
export default function App() {
  return (
    <GTProvider {...config}> 
      <MyApp />
    </GTProvider> 
  );
}

Step 4: Add the translate command to your build script 🏗️

The last step is to add the translate command to your build script. Make sure that the translate command comes before the build command.

package.json
{
  "scripts": {
    "build": "npx gtx-cli translate && <YOUR_BUILD_COMMAND>"
  }
}

That's it! You are now ready to deploy your react app with GT!


Next steps

On this page