Skip to content

Installation and Activation

Nicolò Santilio edited this page Oct 3, 2021 · 38 revisions

Contents on this page

Installation

  1. Install this plugin:
    1. [recommended] Copy this repository and extract all of the GodotFirebase-main contents (addons/ folder including .env file) to the root of your project at res://
      --- or ---
    2. [not recommended - always check version] Install this addon from the AssetLibrary inside Godot Engine's Editor: go to the AssetLib panel on the top bar and look for GodotFirebase. When choosing which folders to install, only check addons/ folder and .env file
  2. Open your Project Settings
  3. Go to Plugins
  4. Activate the GDFirebase plugin
    Plugin Section
  5. From there, you will have an autoload singleton with the variables Auth and Database. Reference it by using Firebase.Auth, etc.

Back


Activation

  1. Go create a Firebase app at console.firebase.google.com. A Guide can be found Here

  2. Once the app has been created, add a web app to it:

    1. Click on the Project Settings option
      FB Project Settings

    2. Click on the Add App button
      FB Add App

    3. Click the Web App button
      FB Web App

    4. Add a name to your web app and click Register App
      FB Register App

  3. This will show a series of values called "config". To use them you have two options:

    1. Take those values and copy them to the appropriate variables in res://addons/godot-firebase/firebase.gd.

    2. (Recommended) Create a .env file at the root of the GodotFirebase plugin (specifically, res://addons/godot-firebase/.env). Specify those values as environment variables in this file (see example structure below). Reload the project, and you will find a new category inside Project ↝ Project Settings ↝ General ↝ Firebase, which is Environment Variables. Fill all the fields inside this new category and you will be good to go.

[firebase/environment_variables]

apiKey=""
authDomain=""
databaseURL=""
projectId=""
storageBucket=""
messagingSenderId=""
appId=""
measurementId=""
clientId=""
clientSecret=""
domainUriPrefix=""

Back


(Additional) OAuth configuration

In order to let users login with their own Google account to your app, the OAuth authentication process must be configured to work with this Plugin.
This process will not be enabled with the main configuration, but still it is not mandatory to use standard login methods.
To enable Google OAuth Authentication, follow these steps:

  1. In your project, enable "Google" in "Sign-in Method": enable_sign_in
  2. Go to console.cloud.google.com/apis/credentials: go_to
  3. Select the project you are working on (and eventually, your organization): select_project
  4. Press the "+ Create Credentials" button and chose "ID Client OAuth" to register new credentials: create_credentials
  5. Select Desktop Application, then give a name to your credentials: desktop
  6. Create your credentials and copy-paste them in the configuration file .env, or directly in your code: keys config

Back


Exporting (Important!)

When exporting your app for any platform at your choice, please make sure to let the engine know that the ".env" file is a resource that must be exported too.
By default Godot will not export all those resources it doesn't consider necessary for your app to optimize its size.
To make sure .env will be included in your binaries, img
Alternatively, fill the configuration dictionary directly from code, at addons/godot-firebase/firebase/ ↝ firebase.gd:
img

Note: remember that when exporting your app in Text or Compiled mode, your files will still be accessible with some reverse engineering. To make sure your files won't be readable even if reverse engineered, compile with an encryption key.

Back


Clone this wiki locally