Skip to content

Commit 08ffa20

Browse files
committed
env replace
1 parent 382f0a4 commit 08ffa20

File tree

3 files changed

+10
-13
lines changed

3 files changed

+10
-13
lines changed

apps/docs/content/zerops-yaml/specification.mdx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,10 @@ Characters that wrap your variable names in placeholders (e.g., `%%` means place
404404
Files or directories to process for variable replacement.
405405
- Type: `string` or `array of strings`
406406
- Can be specific files or directories
407-
- **Important**: Directory paths like `./` only process files in that directory, not subdirectories. For recursive processing, specify each subdirectory explicitly
407+
408+
:::warning
409+
Directory targets only process files directly in the specified directory, not subdirectories for performance reasons. To process files in subdirectories, specify each subdirectory explicitly in the target array. For example, ./config/ processes only files in the config directory itself, not files in ./config/jwt/ or other subdirectories.
410+
:::
408411

409412
**How it works:**
410413
1. Define placeholders in your files using the specified delimiters
@@ -438,10 +441,6 @@ MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA...
438441

439442
The placeholder gets replaced with the actual JWT public key during deployment.
440443

441-
:::warning
442-
When using `./` as target, only files directly in the root directory are processed. Subdirectories are ignored for performance reasons. To process subdirectories, specify each one explicitly in the target array.
443-
:::
444-
445444
### routing <Badge type="optional" />
446445

447446
Configures URL routing, redirects, and HTTP headers (only for Static services).

apps/docs/static/llms-full.txt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24419,7 +24419,9 @@ Characters that wrap your variable names in placeholders (e.g., `%%` means place
2441924419
Files or directories to process for variable replacement.
2442024420
- Type: `string` or `array of strings`
2442124421
- Can be specific files or directories
24422-
- **Important**: Directory paths like `./` only process files in that directory, not subdirectories. For recursive processing, specify each subdirectory explicitly
24422+
:::warning
24423+
Directory targets only process files directly in the specified directory, not subdirectories for performance reasons. To process files in subdirectories, specify each subdirectory explicitly in the target array. For example, ./config/ processes only files in the config directory itself, not files in ./config/jwt/ or other subdirectories.
24424+
:::
2442324425
**How it works:**
2442424426
1. Define placeholders in your files using the specified delimiters
2442524427
2. Set environment variables with matching names
@@ -24446,9 +24448,6 @@ MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA...
2444624448
-----END PUBLIC KEY-----
2444724449
```
2444824450
The placeholder gets replaced with the actual JWT public key during deployment.
24449-
:::warning
24450-
When using `./` as target, only files directly in the root directory are processed. Subdirectories are ignored for performance reasons. To process subdirectories, specify each one explicitly in the target array.
24451-
:::
2445224451
### routing
2445324452
Configures URL routing, redirects, and HTTP headers (only for Static services).
2445424453
```yaml

apps/docs/static/llms-small.txt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20957,7 +20957,9 @@ Characters that wrap your variable names in placeholders (e.g., `%%` means place
2095720957
Files or directories to process for variable replacement.
2095820958
- Type: `string` or `array of strings`
2095920959
- Can be specific files or directories
20960-
- **Important**: Directory paths like `./` only process files in that directory, not subdirectories. For recursive processing, specify each subdirectory explicitly
20960+
:::warning
20961+
Directory targets only process files directly in the specified directory, not subdirectories for performance reasons. To process files in subdirectories, specify each subdirectory explicitly in the target array. For example, ./config/ processes only files in the config directory itself, not files in ./config/jwt/ or other subdirectories.
20962+
:::
2096120963
**How it works:**
2096220964
1. Define placeholders in your files using the specified delimiters
2096320965
2. Set environment variables with matching names
@@ -20984,9 +20986,6 @@ MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA...
2098420986
-----END PUBLIC KEY-----
2098520987
```
2098620988
The placeholder gets replaced with the actual JWT public key during deployment.
20987-
:::warning
20988-
When using `./` as target, only files directly in the root directory are processed. Subdirectories are ignored for performance reasons. To process subdirectories, specify each one explicitly in the target array.
20989-
:::
2099020989
### routing
2099120990
Configures URL routing, redirects, and HTTP headers (only for Static services).
2099220991
```yaml

0 commit comments

Comments
 (0)