File tree 4 files changed +12
-2
lines changed
4 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 23
23
# Ignore public uploads
24
24
public /uploads
25
25
public /assets
26
+
27
+ .env
Original file line number Diff line number Diff line change @@ -30,7 +30,10 @@ gem "sentry-raven"
30
30
31
31
gem "letter_opener_web" , "~> 1.3"
32
32
33
+
34
+
33
35
group :development , :test do
36
+ gem "dotenv-rails"
34
37
gem "byebug" , "~> 10.0" , platform : :mri
35
38
36
39
gem "decidim-dev" , git : "https://github.com/OpenSourcePolitics/decidim.git" , branch : "0.18-merge"
Original file line number Diff line number Diff line change 343
343
doorkeeper (4.4.3 )
344
344
railties (>= 4.2 )
345
345
doorkeeper-i18n (4.0.1 )
346
+ dotenv (2.7.5 )
347
+ dotenv-rails (2.7.5 )
348
+ dotenv (= 2.7.5 )
349
+ railties (>= 3.2 , < 6.1 )
346
350
equalizer (0.0.11 )
347
351
erb_lint (0.0.30 )
348
352
activesupport
@@ -794,6 +798,7 @@ DEPENDENCIES
794
798
dalli
795
799
decidim !
796
800
decidim-dev !
801
+ dotenv-rails
797
802
faker (~> 1.8 )
798
803
fog-aws
799
804
letter_opener_web (~> 1.3 )
Original file line number Diff line number Diff line change @@ -10,13 +10,13 @@ namespace :heroku do
10
10
11
11
if ENV [ "AWS_ACCESS_KEY_ID" ] . nil?
12
12
puts "No AWS_ACCESS_KEY_ID found !"
13
- puts "export SECRET_KEY_BASE first"
13
+ puts "export AWS_ACCESS_KEY_ID first"
14
14
exit 1
15
15
end
16
16
17
17
if ENV [ "AWS_SECRET_ACCESS_KEY" ] . nil?
18
18
puts "No SECRET_KEY_BASE found !"
19
- puts "export SECRET_KEY_BASE first"
19
+ puts "export AWS_SECRET_ACCESS_KEY first"
20
20
exit 1
21
21
end
22
22
You can’t perform that action at this time.
0 commit comments