|
19 | 19 | | Tag used to return list of Secrets
|
20 | 20 | |--------------------------------------------------------------------------
|
21 | 21 | |
|
22 |
| - | All the secrets with the `dev` tag will be loaded into environment variables |
| 22 | + | All the secrets with the `dev` tag will be loaded into environment variables. |
23 | 23 | |
|
24 | 24 | */
|
25 | 25 |
|
|
31 | 31 | | Environments where this service provider is enabled
|
32 | 32 | |--------------------------------------------------------------------------
|
33 | 33 | |
|
34 |
| - | List the environment names in an array where this package should be enabled, it will be compared against env('APP_ENV') set in the app.yaml file |
| 34 | + | List the environment names in an array where this package should be enabled, |
| 35 | + | it will be compared against env('APP_ENV') set in the app.yaml file. |
35 | 36 | |
|
36 | 37 | */
|
37 | 38 |
|
|
44 | 45 | | Variables that require overwriting the config
|
45 | 46 | |--------------------------------------------------------------------------
|
46 | 47 | |
|
47 |
| - | Some (not all) variables are set into the config, as such updating the env() will not overwrite the config cached values. The variables below will overwrite the config. |
| 48 | + | Some (not all) variables are set into the config, as such updating the env() will not overwrite |
| 49 | + | the config cached values. The variables below will overwrite the config. |
48 | 50 | |
|
49 | 51 | */
|
50 | 52 | 'variables-config' => [
|
|
56 | 58 | | Cache Enabled
|
57 | 59 | |--------------------------------------------------------------------------
|
58 | 60 | |
|
59 |
| - | Boolean if you would like to enable cache. Datastore requests can add an additional 100-250ms of latency to each request. It is recommended to use caching to significantly reduce this latency. |
| 61 | + | Boolean if you would like to enable cache. Datastore requests can add an additional 100-250ms |
| 62 | + | of latency to each request. It is recommended to use caching to significantly reduce this latency. |
60 | 63 | |
|
61 | 64 | */
|
62 | 65 |
|
63 |
| - 'cache-enabled' => true, //boolean |
| 66 | + 'cache-enabled' => true, // boolean |
64 | 67 |
|
65 | 68 | /*
|
66 | 69 | |--------------------------------------------------------------------------
|
|
71 | 74 | |
|
72 | 75 | */
|
73 | 76 |
|
74 |
| - 'cache-expiry' => 30, //minutes |
| 77 | + 'cache-expiry' => 30, // minutes |
75 | 78 |
|
76 | 79 | /*
|
77 | 80 | |--------------------------------------------------------------------------
|
78 | 81 | | Cache Store
|
79 | 82 | |--------------------------------------------------------------------------
|
80 | 83 | |
|
81 |
| - | Define the cache store that you wish to use (this must be configured in your config.cache file). Note you can only use a store that does not require credentials to access it. As such file is suggested. |
| 84 | + | Define the cache store that you wish to use (this must be configured in your config.cache file). |
| 85 | + | Note: you can only use a store that does not require credentials to access it. As such file is suggested. |
82 | 86 | |
|
83 | 87 | */
|
84 | 88 |
|
|
89 | 93 | | Debugging
|
90 | 94 | |--------------------------------------------------------------------------
|
91 | 95 | |
|
92 |
| - | Enable debugging, latency introduced by this package on bootstrapping is calculated and logged to the system log (viewable in stackdriver) |
| 96 | + | Enable debugging, latency introduced by this package on bootstrapping is calculated and logged |
| 97 | + | to the system log (viewable in stackdriver). |
93 | 98 | |
|
94 | 99 | */
|
95 | 100 |
|
|
0 commit comments