Module

x/pagic/docker-entrypoint.sh

A static site generator powered by Deno + React
Latest
File
#!/bin/shset -e
# if no configuration exists, create itif (! [ -e pagic.config.tsx ]) && (! [ -e pagic.config.ts ]); then echo "export default {};" > pagic.config.tsfi
if [ -z "$(command -v "${1}")" ]; then set -- pagic "$@"fi
exec "$@"