Environment variables
To keep environment variables secure, avoid hard-coding sensitive information into your source code. By utilizing environment variables, you can ensure that such information remains protected
Last updated
To keep environment variables secure, avoid hard-coding sensitive information into your source code. By utilizing environment variables, you can ensure that such information remains protected
Last updated
Environment variables provide a standardized and crucial method for effectively managing sensitive information within your software projects. These variables serve as a secure repository for storing a wide range of confidential data, including but not limited to API keys, access tokens, database credentials, and configuration settings.
You can access all features by using the GodotEnvironment
class in any part of your code. This class provides extra functionality while maintaining compatibility with OS.get_environment()
and OS.set_environment()
for runtime variable management.
By default, this class looks for .env files in the root of your project res://
To modify this path, you can use:
or set the value on the Project settings -> GodotEnv -> Root directory:
For internal execution convenience, the plugin tracks active variables without storing their values in array, as storing sensitive content in this array can risk data leaks or unauthorized access. This approach allows you to verify which variables have been read and loaded into memory without exposing their values
This class supports reading multiple environment files. For production, it's highly advisable to refrain from including the .env
file in your source code repository. Instead, consider providing on the repository an .env.example
file with blank values for the keys used. This strategy enables you to duplicate the file and input the values in your local environment, thereby averting the inadvertent exposure of sensitive information.
This is an alternative to OS.get_environment(key)
Retrieve the value of an environment variable by its key or null it if it doesn't
Set a environment variable on the runtime process, this is an alternative to OS.set_environment(key, value)
Remove a variable from the runtime process
Create an environment file with the specified filename. If it already exists, it can be overwritten
Read an .env
file and set the environment variables to be accessible in the code
Remove environment variables from the current process runtime. You can add the keys that you do not want to be deleted in this process.
Add a key-value pair to an environment file and set the environment variable