13
14
15
16
17
18
19
20
21
22
23
24
|
# File 'lib/messhy/generators/messhy/install_generator.rb', line 13
def show_instructions
puts "\nā
Messhy installed!"
puts "\nš Next steps:"
puts ' 1. Either:'
puts ' a) Edit config/mesh.yml with your server IPs, OR'
puts ' b) Use Terraform to auto-generate config/mesh.yml'
puts ' 2. Deploy VPN mesh: rails messhy:setup'
puts ' 3. Check health: rails messhy:health'
puts "\nš¦ WireGuard private keys will be stored in .secrets/wireguard (gitignored)."
puts ' Copy those YAML files into 1Password or your preferred vault after setup.'
puts "\nš See config/mesh.example.yml in gem for examples"
end
|