lib/tasks/development.rake in locomotivecms-3.0.0.pre.beta.1 vs lib/tasks/development.rake in locomotivecms-3.0.0.rc1
- old
+ new
@@ -29,12 +29,16 @@
site = Locomotive::Site.create! name: "LocomotiveCMS", handle: "www", domains: ["www.example.com"]
site.memberships.build account: account, role: 'admin'
site.save!
+ puts "\"LocomotiveCMS\" created: #{site._id}"
+
site = Locomotive::Site.create! name: "Sample site", handle: "sample", domains: ["sample.example.com"]
site.memberships.build account: account, role: 'admin'
site.save!
+
+ puts "\"Sample site\" created: #{site._id}"
puts "Now you have a www.example.com site"
puts "and a sample.example.com site as well. (add them to your /etc/hosts)"
puts "You can login with admin@locomotivecms.com and \"locomotive\" password."
end