_app.sh 302 B

123456789101112131415
  1. #!/bin/bash
  2. #
  3. # Variables to be used for background styling.
  4. # app variables
  5. jwt_secret=$(openssl rand -base64 32)
  6. jwt_refresh_secret=$(openssl rand -base64 32)
  7. db_pass=$(openssl rand -base64 32)
  8. db_user=$(openssl rand -base64 32)
  9. db_name=$(openssl rand -base64 32)
  10. deploy_email=deploy@deploy.com