mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
425 B
18 lines
425 B
#!/bin/sh
|
|
|
|
echo "Waiting 60 seconds for MongoDB ..."
|
|
sleep 60
|
|
|
|
if [ "x$DOMAIN" = "x" ]; then
|
|
export DOMAIN=$RENDER_EXTERNAL_HOSTNAME
|
|
fi
|
|
|
|
export URLS__BASEURL="https://${DOMAIN}"
|
|
export EVENTSTORE__MONGODB__CONFIGURATION="mongodb://${MONGO}"
|
|
export STORE__MONGODB__CONFIGURATION="mongodb://${MONGO}"
|
|
|
|
export IDENTITY__GOOGLECLIENT=""
|
|
export IDENTITY__GITHUBCLIENT=""
|
|
export IDENTITY__MICROSOFTCLIENT=""
|
|
|
|
dotnet Squidex.dll
|