gem "rouge"
#html crawling
gem "httparty"
-
+#environment stuff
+gem "dotenv"
# Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis]
# gem "kredis"
# Static analysis for security vulnerabilities [https://brakemanscanner.org/]
gem "brakeman", require: false
- gem "dotenv"
-
# Omakase Ruby styling [https://github.com/rails/rubocop-rails-omakase/]
gem "rubocop-rails-omakase", require: false
end
production:
<<: *default
database: arelpe_production
- username: arelpe
- password: <%= ENV["ARELPE_DATABASE_PASSWORD"] %>
+ password: <%= ENV.fetch("MYSQL_PASSWORD") %>
+ host: <%= ENV.fetch("MYSQL_HOST") %
+ username: <%= ENV.fetch("MYSQL_USERNAME") %>
+ password: <%= ENV.fetch("MYSQL_PASSWORD") %>