How to add n fake users - brownfield-team/anacapa-github-linker GitHub Wiki

require 'securerandom'
(1...100).each do |i|
  item = i.to_s.rjust(3, '0')
  User.create!(name: "test#{item}", username: "test#{item}", email: "test#{item}@example.com", password:SecureRandom.alphanumeric(16), provider:"github", uid: SecureRandom.uuid)
end

Run the above in a rails console to get many users.