1
0
Fork 0
mirror of synced 2024-06-14 00:34:51 +12:00

Update docs/tutorials/add-environment-variable.md

Co-authored-by: Aditya Oberai <31401437+adityaoberai@users.noreply.github.com>
This commit is contained in:
Sayanta Banerjee 2022-01-17 19:54:46 +05:30 committed by GitHub
parent 3d6c8e3d9a
commit dab5aadc9a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,7 +9,7 @@ Adding new features may require various configurations options to be set by the
This tutorial will cover how to properly add a new environment variable in Appwrite.
### Naming environment varialbe
### Naming environment variable
The environment variables in Appwrite are prefixed with `_APP_`. If it belongs to a specific category, the category name is appended as `_APP_REDIS` for the Redis category. The available categories are General, Redis, MariaDB, InfluxDB, StatsD, SMTP, Storage and Functions. Finally, a properly describing name is given to the variable. For example, `_APP_REDIS_HOST` is an environment variable for Redis connection host. You can find more information on available categories and existing environment variables in the [environment variables doc](https://appwrite.io/docs/environment-variables).
### Describe new environment variable