mirror of
https://github.com/hcengineering/huly-selfhost.git
synced 2026-08-31 12:19:54 +02:00
11 lines
225 B
Bash
Executable File
11 lines
225 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
export SERVER_ADDRESS="$1"
|
|
export HULY_SECRET="secret"
|
|
|
|
echo "Setting Huly Server Address: $SERVER_ADDRESS"
|
|
envsubst < template.conf > nginx.conf
|
|
envsubst < template.env > .env
|
|
|
|
./use-version.sh v0.6.333
|