From af6f71074764d7f34c0eb6e7673dbf9e3201cc2e Mon Sep 17 00:00:00 2001 From: Sean Dickinson <90267290+sean-dickinson@users.noreply.github.com> Date: Tue, 8 Feb 2022 16:29:01 -0500 Subject: [PATCH] fix: incorrect file name .env.template - File needs to be .env.example to match the template, or else this setup script won't run --- bin/docker/setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/docker/setup b/bin/docker/setup index 5027b03..ccc7cd7 100755 --- a/bin/docker/setup +++ b/bin/docker/setup @@ -11,7 +11,7 @@ end FileUtils.chdir APP_ROOT do # This turns sets up up the docker image puts "\n== Copying sample files ==" - FileUtils.cp ".env.template", ".env" unless File.exist?(".env") + FileUtils.cp ".env.example", ".env" unless File.exist?(".env") puts "== Pulling Images ==" system! "docker-compose pull"