33 lines
711 B
Ruby
33 lines
711 B
Ruby
root_path = File.expand_path(File.dirname(__FILE__))
|
|
require File.join(root_path, "lib", "color")
|
|
include Color
|
|
|
|
#
|
|
# ruby ./update.rb development # or test or production (default)
|
|
#
|
|
envs = ["production", "test", "development"]
|
|
env = if envs.include?(ARGV[0])
|
|
ARGV[0]
|
|
else
|
|
"production"
|
|
end
|
|
|
|
puts green " == Install for ENV=#{env} ..."
|
|
|
|
# bundle install
|
|
`bundle install`
|
|
|
|
# migrate db
|
|
`bundle exec rake db:create RAILS_ENV=#{env}`
|
|
`bundle exec rake db:schema:load RAILS_ENV=#{env}`
|
|
`bundle exec rake db:seed_fu RAILS_ENV=#{env}`
|
|
|
|
puts green %q[
|
|
Administrator account created:
|
|
|
|
login.........admin@local.host
|
|
password......5iveL!fe
|
|
]
|
|
|
|
puts green " == Done! Now you can start server"
|