22 lines
850 B
Ruby
22 lines
850 B
Ruby
# This file should contain all the record creation needed to seed the database with its default values.
|
|
# The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
|
|
#
|
|
# Examples:
|
|
#
|
|
# cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }])
|
|
# Mayor.create(name: 'Emanuel', city: cities.first)
|
|
user = CreateAdminService.new.call
|
|
puts 'CREATED ADMIN USER: ' << user.email
|
|
# Environment variables (ENV['...']) can be set in the file .env file.
|
|
|
|
# Microposts
|
|
# users = User.order(:created_at).take(6)
|
|
# 50.times do
|
|
# content = Faker::Lorem.sentence(5)
|
|
# users.each { |user| user.microposts.create!(content: content) }
|
|
# end
|
|
|
|
# Tokens
|
|
Token.find_or_create_by!(canister_id: "iozql-7iaaa-aaaah-advvq-cai") # Tendy icrc1
|
|
Token.find_or_create_by!(canister_id: "whdfs-saaaa-aaaao-awh4a-cai") # NEED dip20
|