-
-
Notifications
You must be signed in to change notification settings - Fork 638
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add recipe for rekalogika/gotenberg-pdf-bundle (#1552)
* Add recipe for rekalogika/gotenberg-pdf-bundle * ends files with newlines * use GOTENBERG_URL, but retain GOTENBERG_HOST and GOTENBERG_PORT * add env comment for clarity
- Loading branch information
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
2 changes: 2 additions & 0 deletions
2
rekalogika/gotenberg-pdf-bundle/1.0/config/packages/rekalogika_gotenberg_pdf.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
rekalogika_gotenberg_pdf: | ||
url: '%env(GOTENBERG_URL)%' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"bundles": { | ||
"Rekalogika\\GotenbergPdfBundle\\RekalogikaGotenbergPdfBundle": ["all"] | ||
}, | ||
"copy-from-recipe": { | ||
"config/": "%CONFIG_DIR%/" | ||
}, | ||
"env": { | ||
"#1": "The variables GOTENBERG_HOST & GOTENBERG_PORT are only used for Docker", | ||
"#2": "integration. The library uses only GOTENBERG_URL. You can override", | ||
"#3": "GOTENBERG_URL and safely ignore GOTENBERG_HOST & GOTENBERG_PORT.", | ||
"GOTENBERG_HOST": "localhost", | ||
"GOTENBERG_PORT": "3000", | ||
"GOTENBERG_URL": "http://${GOTENBERG_HOST}:${GOTENBERG_PORT}" | ||
}, | ||
"docker-compose": { | ||
"docker-compose.yml": { | ||
"services": [ | ||
"gotenberg:", | ||
" image: docker.io/gotenberg/gotenberg:7" | ||
] | ||
}, | ||
"docker-compose.override.yml": { | ||
"services": [ | ||
"gotenberg:", | ||
" ports:", | ||
" - \"3000\"" | ||
] | ||
} | ||
} | ||
} | ||
|