feat: Add comprehensive blueprint collection and project setup

This commit is contained in:
Mauricio Siu
2025-03-09 23:30:52 -06:00
parent 0015373bb1
commit 813efefab9
356 changed files with 2909 additions and 14 deletions

View File

@@ -1,18 +0,0 @@
services:
gotenberg:
image: gotenberg/gotenberg:latest
environment:
# NOTE: requires the --api-enable-basic-auth option in "command"
# make sure to also change the credentials in Dokploy environment
GOTENBERG_API_BASIC_AUTH_USERNAME: ${GOTENBERG_API_BASIC_AUTH_USERNAME}
GOTENBERG_API_BASIC_AUTH_PASSWORD: ${GOTENBERG_API_BASIC_AUTH_PASSWORD}
command: [
"gotenberg",
# See the full list of options at https://gotenberg.dev/docs/configuration
# Examples:
"--api-enable-basic-auth"
#"--api-timeout=60s",
#"--chromium-auto-start"
]
restart: unless-stopped

Binary file not shown.

Before

Width:  |  Height:  |  Size: 229 KiB

View File

@@ -1,16 +0,0 @@
variables:
main_domain: ${randomDomain}
username: gotenberg
password: changethis
config:
domains:
- serviceName: gotenberg
port: 3000
host: ${main_domain}
env:
- GOTENBERG_API_BASIC_AUTH_USERNAME=${username}
- GOTENBERG_API_BASIC_AUTH_PASSWORD=${password}
mounts: []