summaryrefslogtreecommitdiff
path: root/db/fixtures/development/02_application_settings.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/fixtures/development/02_application_settings.rb')
-rw-r--r--db/fixtures/development/02_application_settings.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/db/fixtures/development/02_application_settings.rb b/db/fixtures/development/02_application_settings.rb
index 67486d2ab5f..46da3205d8f 100644
--- a/db/fixtures/development/02_application_settings.rb
+++ b/db/fixtures/development/02_application_settings.rb
@@ -7,4 +7,7 @@ ApplicationSetting.create_from_defaults
puts "Enable hashed storage for every new projects.".color(:green)
ApplicationSetting.current_without_cache.update!(hashed_storage_enabled: true)
+puts "Generate CI JWT signing key".color(:green)
+ApplicationSetting.current_without_cache.update!(ci_jwt_signing_key: OpenSSL::PKey::RSA.new(2048).to_pem)
+
print '.'