From ef6b857b19c8314d443b4b2b6a6dca1bb8de3106 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Mon, 12 Nov 2018 10:34:49 +0100 Subject: [PATCH] switch to .env instead of .env.dist --- symfony/flex/1.0/.env | 5 +++-- symfony/flex/1.0/.env.dist | 3 --- symfony/flex/1.0/manifest.json | 3 +-- 3 files changed, 4 insertions(+), 7 deletions(-) delete mode 100644 symfony/flex/1.0/.env.dist diff --git a/symfony/flex/1.0/.env b/symfony/flex/1.0/.env index d0c43fbc..07ad02bb 100644 --- a/symfony/flex/1.0/.env +++ b/symfony/flex/1.0/.env @@ -1,3 +1,4 @@ -# This file is a "template" of which env vars need to be defined for your application -# Override the variables you want in .env.local for development, create environment variables when deploying to production +# This file defines all environment variables that the application needs. +# Use ".env.local" for local overrides during development. +# Use real environment variables when deploying to production. # https://symfony.com/doc/current/best_practices/configuration.html#infrastructure-related-configuration diff --git a/symfony/flex/1.0/.env.dist b/symfony/flex/1.0/.env.dist deleted file mode 100644 index 2148dfc4..00000000 --- a/symfony/flex/1.0/.env.dist +++ /dev/null @@ -1,3 +0,0 @@ -# This file is a "template" of which env vars need to be defined for your application -# Copy this file to .env file for development, create environment variables when deploying to production -# https://symfony.com/doc/current/best_practices/configuration.html#infrastructure-related-configuration diff --git a/symfony/flex/1.0/manifest.json b/symfony/flex/1.0/manifest.json index 9fa75480..56f64a60 100644 --- a/symfony/flex/1.0/manifest.json +++ b/symfony/flex/1.0/manifest.json @@ -1,6 +1,5 @@ { "copy-from-recipe": { - ".env": ".env", - ".env.dist": ".env.dist" + ".env": ".env" } }