File tree 5 files changed +14
-4
lines changed
5 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ services:
8
8
POSTGRES_USER : postgres
9
9
volumes :
10
10
- ./postgres/data:/var/lib/postgresql/data
11
+ platform : linux/amd64
11
12
redis :
12
13
image : redis:latest
13
14
ports :
Original file line number Diff line number Diff line change @@ -87,6 +87,7 @@ group :development do
87
87
gem 'bcrypt' , '~> 3.1.7'
88
88
gem 'bcrypt_pbkdf'
89
89
gem 'ed25519'
90
+ gem 'better_errors'
90
91
91
92
# gem 'capistrano', require: false
92
93
# gem 'capistrano-rails', require: false
Original file line number Diff line number Diff line change 81
81
activesupport (>= 3.0.0 )
82
82
bcrypt (3.1.18 )
83
83
bcrypt_pbkdf (1.1.0 )
84
+ better_errors (2.10.1 )
85
+ erubi (>= 1.0.0 )
86
+ rack (>= 0.9.0 )
87
+ rouge (>= 1.0.0 )
84
88
bindex (0.8.1 )
85
89
bootsnap (1.16.0 )
86
90
msgpack (~> 1.2 )
346
350
rexml (3.2.5 )
347
351
rmagick (5.2.0 )
348
352
pkg-config (~> 1.4 )
353
+ rouge (4.1.2 )
349
354
ruby-vips (2.1.4 )
350
355
ffi (~> 1.12 )
351
356
ruby2_keywords (0.0.5 )
@@ -436,6 +441,7 @@ PLATFORMS
436
441
DEPENDENCIES
437
442
bcrypt (~> 3.1.7 )
438
443
bcrypt_pbkdf
444
+ better_errors
439
445
bootsnap
440
446
bulma-rails (= 0.7.4 )
441
447
byebug
Original file line number Diff line number Diff line change
1
+ $redis = Redis . new ( url : ENV [ 'REDIS_URL' ] , ssl_params : { verify_mode : OpenSSL ::SSL ::VERIFY_NONE } )
Original file line number Diff line number Diff line change 1
1
Rechord ::Application . config . session_store :redis_store ,
2
- servers : ENV [ 'REDIS_URL' ] ,
3
- expire_after : 20 . years ,
4
- key : "_#{ Rails . application . class . module_parent_name . downcase } _session" ,
5
- threadsafe : false
2
+ servers : ENV [ 'REDIS_URL' ] ,
3
+ expire_after : 20 . years ,
4
+ key : "_#{ Rails . application . class . module_parent_name . downcase } _session" ,
5
+ threadsafe : false ,
6
+ ssl_params : { verify_mode : OpenSSL ::SSL ::VERIFY_NONE }
You can’t perform that action at this time.
0 commit comments