Запускаем rails credentials:edit в Visual Studio Code (macOS)
Чтобы запустить rails credentials:edit в Visual Studio Code (на macOS) выполняем команду с параметром:
EDITOR='code --wait' rails credentials:edit
При успешном выполнении команды можем увидеть ответ:
New credentials encrypted and saved. # если уже ранее credentials создавались
При первом же запуске мы увидим следующее:
Adding config/master.key to store the master encryption key: dab2d57d79b477b3320620bb8e368dcb Save this in a password manager your team can access. If you lose the key, no one, including you, can access anything encrypted with it. create config/master.key Ignoring config/master.key so it won't end up in Git history: append .gitignore New credentials encrypted and saved.
Создались файлы:
config/master.key и config/credentials.yml.enc
В наш .gitignore добавится соответствующая строка:
# Ignore master key for decrypting credentials and more. /config/master.key