add app session secret generation to the mix

pull/15/head
Adam Townsend 2023-10-06 13:57:42 -07:00
parent 6c40ae6311
commit 38f92d83c3
1 changed files with 2 additions and 0 deletions

2
Jenkinsfile vendored
View File

@ -5,7 +5,9 @@ pipeline {
stage('Init') { stage('Init') {
steps { steps {
sh 'rbenv local 3.2.2' sh 'rbenv local 3.2.2'
sh 'echo "ENV[\"APP_SESSION_SECRET"] = \"$(openssl rand -base64 64)\"" >> .env.rb'
sh 'echo "ENV[\"DB_NAME\"] ||= \"url_shortener.db\"" >> .env.rb' sh 'echo "ENV[\"DB_NAME\"] ||= \"url_shortener.db\"" >> .env.rb'
sh 'cat .env.rb'
} }
} }
} }