From e62a755ddbd19bed7a4eb45810ea45a4637d84f4 Mon Sep 17 00:00:00 2001 From: apoc64 Date: Sun, 2 Sep 2018 11:08:27 -0600 Subject: [PATCH 1/2] Adds comments for setting up timezone in application.yml --- config/application.yml.example | 1 + 1 file changed, 1 insertion(+) diff --git a/config/application.yml.example b/config/application.yml.example index 980d3f9b26..ab5810cc4a 100644 --- a/config/application.yml.example +++ b/config/application.yml.example @@ -4,6 +4,7 @@ # Minimum 30 but usually 128 characters. To obtain run 'rake secret', or faster, 'openssl rand -hex 128' SECRET_TOKEN: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx +# Time zone must match the operating system time zone in order to pass all tests. This is a string which is the key for the MAPPING hash constant in the ActiveSupport::TimeZone class. Documentation for this class including the entire hash can be found here: https://api.rubyonrails.org/classes/ActiveSupport/TimeZone.html TIMEZONE: Melbourne # Default country for dropdowns etc. See for codes: http://en.wikipedia.org/wiki/ISO_3166-1 DEFAULT_COUNTRY_CODE: AU From fbce828305d848fd0fa6224a77f0b4d20ce263f5 Mon Sep 17 00:00:00 2001 From: apoc64 Date: Mon, 3 Sep 2018 08:56:42 -0600 Subject: [PATCH 2/2] Breaks comment into multiple lines --- config/application.yml.example | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config/application.yml.example b/config/application.yml.example index ab5810cc4a..27710fbbc4 100644 --- a/config/application.yml.example +++ b/config/application.yml.example @@ -4,7 +4,9 @@ # Minimum 30 but usually 128 characters. To obtain run 'rake secret', or faster, 'openssl rand -hex 128' SECRET_TOKEN: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -# Time zone must match the operating system time zone in order to pass all tests. This is a string which is the key for the MAPPING hash constant in the ActiveSupport::TimeZone class. Documentation for this class including the entire hash can be found here: https://api.rubyonrails.org/classes/ActiveSupport/TimeZone.html +# Time zone must match the operating system time zone in order to pass all tests. +# This string is the key for the MAPPING hash constant in ActiveSupport::TimeZone. +# Documentation including the hash: https://api.rubyonrails.org/classes/ActiveSupport/TimeZone.html TIMEZONE: Melbourne # Default country for dropdowns etc. See for codes: http://en.wikipedia.org/wiki/ISO_3166-1 DEFAULT_COUNTRY_CODE: AU