|
|
@@ -2,6 +2,12 @@
|
2
|
2
|
# The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
|
3
|
3
|
|
4
|
4
|
user = User.find_or_initialize_by(:email => ENV['SEED_EMAIL'] || "admin@example.com")
|
|
5
|
+
|
|
6
|
+if user.persisted?
|
|
7
|
+ puts "User with email '#{user.email}' already exists, not seeding."
|
|
8
|
+ exit
|
|
9
|
+end
|
|
10
|
+
|
5
|
11
|
user.username = ENV['SEED_USERNAME'] || "admin"
|
6
|
12
|
user.password = ENV['SEED_PASSWORD'] || "password"
|
7
|
13
|
user.password_confirmation = ENV['SEED_PASSWORD'] || "password"
|