This web app is a password generator.
To regenerate Rails credentials, run the following commands:
# Remove existing credential files
rm config/credentials.yml.enc
rm config/master.key
# Generate new credentials with automatic secret_key_base
EDITOR="echo 'secret_key_base: $(bin/rails secret)' >" bin/rails credentials:editThis will create new master.key and credentials.yml.enc files with a fresh secret_key_base automatically configured.
$ bundle exec rails s