From 84a047fb0c684541891a80bd031b6b69636dd72a Mon Sep 17 00:00:00 2001 From: Adam Townsend Date: Tue, 3 Oct 2023 15:58:01 -0700 Subject: [PATCH] require the .env file to load ENV variables set in there --- config.ru | 1 + 1 file changed, 1 insertion(+) diff --git a/config.ru b/config.ru index 90dc7d6..02b347a 100644 --- a/config.ru +++ b/config.ru @@ -1,3 +1,4 @@ +require './.env' require './app' run App.app