From b14193b6b7e251aba67052e6be48b83522010dbc Mon Sep 17 00:00:00 2001 From: Maikel Linke Date: Wed, 8 Jan 2020 12:14:23 +1100 Subject: [PATCH] Use strings for all environment variables Figaro complained: WARNING: Use strings for Figaro configuration. 25 was converted to "25". WARNING: Use strings for Figaro configuration. 4 was converted to "4". Those numbers have been converted to strings in our example config. --- config/application.yml.example | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/application.yml.example b/config/application.yml.example index 24ac9068fb..28d271e111 100644 --- a/config/application.yml.example +++ b/config/application.yml.example @@ -28,7 +28,7 @@ CURRENCY: AUD # Mail settings MAIL_HOST: 'example.com' MAIL_DOMAIN: 'example.com' -MAIL_PORT: 25 +MAIL_PORT: '25' SMTP_USERNAME: 'ofn' SMTP_PASSWORD: 'f00d' @@ -57,4 +57,4 @@ SMTP_PASSWORD: 'f00d' # STRIPE_CLIENT_ID: "ca_xxxx" # This can be a development ID or a production ID # STRIPE_ENDPOINT_SECRET: "whsec_xxxx" -MEMCACHED_VALUE_MAX_MEGABYTES: 4 +MEMCACHED_VALUE_MAX_MEGABYTES: '4'