All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 9s
9 lines
173 B
Bash
9 lines
173 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
envsubst '${DOMAIN}' \
|
|
</quartz/quartz.config.ts.template \
|
|
>/quartz/quartz.config.ts
|
|
|
|
exec npx quartz build --serve --port "${QUARTZ_PORT:-8080}"
|