-[Environment variables](environment_variables.md): Supported environment variables that can be used to override their defaults values in order to configure GitLab.
-[Environment variables](environment_variables.md): Supported environment variables that can be used to override their defaults values in order to configure GitLab.
-[Plugins](plugins.md): With custom plugins, GitLab administrators can introduce custom integrations without modifying GitLab's source code.
**Note:** Instead of writing and supporting your own plugin you can make changes
> Introduced in GitLab 10.6.
directly to the GitLab source code and contribute it back to the upstream. This way we can
ensure functionality is preserved across versions and covered by tests.
With custom plugins, GitLab administrators can introduce custom integrations
without modifying GitLab's source code.
**Note:** Plugins must be configured on the filesystem of the GitLab
NOTE: **Note:**
server. Only GitLab server administrators will be able to complete these tasks.
Instead of writing and supporting your own plugin you can make changes
Please explore [system hooks] or [webhooks] as an option if you do not
directly to the GitLab source code and contribute back upstream. This way we can
have filesystem access.
ensure functionality is preserved across versions and covered by tests.
Introduced in GitLab 10.6.
NOTE: **Note:**
Plugins must be configured on the filesystem of the GitLab server. Only GitLab
server administrators will be able to complete these tasks. Explore
[system hooks] or [webhooks] as an option if you do not have filesystem access.
A plugin will run on each event so it's up to you to filter events or projects within a plugin code. You can have as many plugins as you want. Each plugin will be triggered by GitLab asynchronously in case of an event. For a list of events please see [system hooks] documentation.
A plugin will run on each event so it's up to you to filter events or projects
within a plugin code. You can have as many plugins as you want. Each plugin will
be triggered by GitLab asynchronously in case of an event. For a list of events
see the [system hooks] documentation.
## Setup
## Setup
Plugins must be placed directly into `plugins` directory, subdirectories will be ignored.
The plugins must be placed directly into the `plugins` directory, subdirectories
There is an `example` directory inside `plugins` where you can find some basic examples.