File: environment-variables.md

package info (click to toggle)
python-pyfunceble 4.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,144 kB
  • sloc: python: 27,918; sh: 142; makefile: 48
file content (93 lines) | stat: -rw-r--r-- 7,975 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# Environment Variables

PyFunceble provides some environment variables to control some of its internal
states or logic before it actually loads any configuration files.

In this page you will find all environment variables grouped by "features".

## Configuration Management

| Environment Variable          | Description                                                                          |
| ----------------------------- | ------------------------------------------------------------------------------------ |
| PYFUNCEBLE_CONFIG_DIR         | If set, PyFunceble will assume its value as the location of the configuration files. |
| PYFUNCEBLE_AUTO_CONFIGURATION | If defined with any value, PyFunceble will accept upstream configuration changes.    |

## Output Management

| Environment Variable       | Description                                                                          |
| -------------------------- | ------------------------------------------------------------------------------------ |
| PYFUNCEBLE_OUTPUT_LOCATION | Defines the folder where PyFunceble will generate the `output/` folder and datasets. |

## Git / CI Management

| Environment Variable     | Description                                                                                                                                                                                      |
| ------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| GIT_NAME                 | Defines the `git.name` to setup and use.                                                                                                                                                         |
| GIT_EMAIL                | Defines the `git.email` to setup and use.                                                                                                                                                        |
| GIT_BRANCH               | Defines the branch to use to store results between multiple CI/CD sessions. **WARNING:** This doesn't apply to the final results                                                                 |
| GIT_DISTRIBUTION_BRANCH  | Defines the branch to use to distribute the final results of multiple CI/CD sessions.                                                                                                            |
| GITHUB_TOKEN             | Under a GitHub Action worker or Jenkins CI worker, defines the token to use to authenticate ourselves against the GitHub infrastructure.                                                         |
| GL_TOKEN                 | Under a GitLab CI/CD runner, defines the token to use to authenticate ourselves against the GitLab infrastructure.                                                                               |
| GH_TOKEN                 | Under a Travis CI instance, defines the token to use to authenticate ourselves against the GitHub infrastructure.                                                                                |
| PYFUNCEBLE_BYPASS_BYPASS | If set, PyFunceble will skip the bypass logic. Meaning that if a commit match the defined markers _(cf: [ci skip], and others)_, the bypass logic will be skipped - if this variable is defined. |

## Database Management

The environment variables listed below are used to share your database credentials
with PyFunceble.

| Environment Variable   | Description                                                                                        |
| ---------------------- | -------------------------------------------------------------------------------------------------- |
| PYFUNCEBLE_DB_CHARSET  | The charset PyFunceble has to use while writing into the database.                                 |
| PYFUNCEBLE_DB_HOST     | The location of the database. It can be an IP, hostname or an absolute path of a unix socket file. |
| PYFUNCEBLE_DB_PORT     | When `PYFUNCEBLE_DB_HOST` is not a socket file, the port to reach the database through             |
| PYFUNCEBLE_DB_USERNAME | The username to use to authenticate ourselves.                                                     |
| PYFUNCEBLE_DB_PASSWORD | The password to use to authenticate ourselves.                                                     |
| PYFUNCEBLE_DB_NAME     | The name of the database to work with.                                                             |

## Debugging

The environment variables listed below can be used to control the extended outputs of PyFunceble.

!!! danger "Beware!!!"

    Using the debug mode will help you understand what's going one under the hood, but
    may also leak private information inside the `{output-dir}/logs` folder.

    **Never share the debug output unsecurely.**

| Environment Variable       | Description                                                                                 |
| -------------------------- | ------------------------------------------------------------------------------------------- |
| PYFUNCEBLE_DEBUG           | Activates the debug mode.                                                                   |
| PYFUNCEBLE_DEBUG_LVL       | The logging level. Can be any of `NONE`, `INFO`, `WARNING`, `ERROR`, `CRITICAL` or `DEBUG`. |
| PYFUNCEBLE_LOGGING_LVL     | Alias of `PYFUNCEBLE_DEBUG_LVL`.                                                            |
| PYFUNCEBLE_DEBUG_ON_SCREEN | Activates the output of debug logs to STDOUT. Should be `true` or `false`.                  |

## Internal Environment Variables

The environment variables shouldn't be set by yourself, but PyFunceble somehow still
read and use them. #MayTheForceBeWithYou :star:

| Environment Variable     | Description                                                                                             |
| ------------------------ | ------------------------------------------------------------------------------------------------------- |
| APPDATA                  | Used under Windows to build or get the configuration folder, when `PYFUNCEBLE_CONFIG_DIR` is not found. |
| GITHUB_ACTIONS           | Used to detect whether we are running under a GitHub Action worker                                      |
| GITLAB_CI                | Used to detect whether we are running under a GitLab CI/CD runner.                                      |
| GITLAB_USER_ID           | Used to detect whether we are running under a GitLab CI/CD runner.                                      |
| TRAVIS_BUILD_DIR         | Used to detect whether we are running under a Travis CI instance.                                       |
| JENKINS_URL              | Used to detect whether we are running under a Jenkins CI worker.                                        |
| JENKINS_HOME             | Used to detect whether we are running under a Jenkins CI worker.                                        |
| PYFUNCEBLE_STANDALONE_CI | Used to detect whether we are running under a Standalone CI/CD engine.                                  |

## Beta Features
!!! danger "Beware!!!"

    This section is documented, but most of the features below them are not open to everyone - yet.

The environment variables listed below, are strictely reserved to selected or power users.

| Environment Variable                 | Description                                                           |
| ------------------------------------ | --------------------------------------------------------------------- |
| PYFUNCEBLE_PLATFORM_API_TOKEN        | Set the API token to use when pushing data into the platform API.     |
| PYFUNCEBLE_PLATFORM_CHECKER_PRIORITY | Set the prioritized checker to accept while testing for the platform. |
| PYFUNCEBLE_PLATFORM_CHECKER_EXCLUDE  | Set the checker to exclude while testing for the platform.            |