fix: disable newrelic on self-hosted by default

This commit is contained in:
Karol Sójko
2023-03-30 11:32:56 +02:00
parent 5d12648669
commit 4ad1cccc33

View File

@@ -22,6 +22,14 @@ if [ -z "$REVISIONS_SERVER_PORT" ]; then
export REVISIONS_SERVER_PORT=3105
fi
#############
# NEW RELIC #
#############
if [ -z "$NEW_RELIC_ENABLED" ]; then
export NEW_RELIC_ENABLED=false
fi
######
# DB #
######