10 lines
244 B
Bash
Executable File
10 lines
244 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# TODO: render configuration files from CLOUDRON_* environment variables
|
|
# Example:
|
|
# envsubst < /app/pkg/config.tmpl > /run/config.yaml
|
|
|
|
>&2 echo "start.sh for Easy Gate is not implemented yet."
|
|
exit 1
|