From 7b5d90d25279aa5deeadc2940c1acbf6f204ba38 Mon Sep 17 00:00:00 2001 From: Daniel Uber Date: Thu, 16 Dec 2021 15:24:22 -0600 Subject: [PATCH] Add DISABLE_SPRING environment variable to gitpod forem server task (#15807) https://www.gitpod.io/docs/environment-variables#terminal-specific-environment-variables Without this I'm seeing the ENV["APP_DOMAIN"] not set when spring is loaded (this prevents browsing the site from within gitpod). --- .gitpod.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitpod.yml b/.gitpod.yml index 8227cce68..75dc09d26 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -13,6 +13,8 @@ ports: tasks: - name: Forem Server + env: + DISABLE_SPRING: 1 before: > redis-server & gp await-port 5432 &&