cleaning
This commit is contained in:
parent
86021a7dc3
commit
6d0175e1f6
5 changed files with 23 additions and 80 deletions
|
@ -34,18 +34,19 @@ sqlite as default db
|
||||||
sudo easy_install pygments
|
sudo easy_install pygments
|
||||||
|
|
||||||
sudo gem install bundler
|
sudo gem install bundler
|
||||||
|
|
||||||
bundle
|
bundle
|
||||||
|
|
||||||
RAILS_ENV=production rake db:setup
|
bundle exec rake db:setup RAILS_ENV=production
|
||||||
|
|
||||||
# create admin user
|
# create admin user
|
||||||
# login....admin@local.host
|
# login....admin@local.host
|
||||||
# pass.....5iveL!fe
|
# pass.....5iveL!fe
|
||||||
RAILS_ENV=production rake db:seed_fu
|
bundle exec rake db:seed_fu RAILS_ENV=production
|
||||||
|
|
||||||
Install gitosis, edit conf/gitosis.yml & start server
|
Install gitosis, edit conf/gitosis.yml & start server
|
||||||
|
|
||||||
rails s
|
rails s -e production
|
||||||
|
|
||||||
== Install Gitosis
|
== Install Gitosis
|
||||||
sudo aptitude install gitosis
|
sudo aptitude install gitosis
|
||||||
|
@ -63,6 +64,7 @@ Install gitosis, edit conf/gitosis.yml & start server
|
||||||
ssh-keygen -t rsa
|
ssh-keygen -t rsa
|
||||||
|
|
||||||
sudo -H -u git gitosis-init < ~/.ssh/id_rsa.pub
|
sudo -H -u git gitosis-init < ~/.ssh/id_rsa.pub
|
||||||
|
|
||||||
sudo chmod 755 /home/git/repositories/gitosis-admin.git/hooks/post-update
|
sudo chmod 755 /home/git/repositories/gitosis-admin.git/hooks/post-update
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
# Admin account
|
|
||||||
admin = User.create(
|
admin = User.create(
|
||||||
:email => "admin@local.host",
|
:email => "admin@local.host",
|
||||||
:name => "Administrator",
|
:name => "Administrator",
|
||||||
|
@ -9,3 +8,12 @@ admin = User.create(
|
||||||
admin.projects_limit = 10000
|
admin.projects_limit = 10000
|
||||||
admin.admin = true
|
admin.admin = true
|
||||||
admin.save!
|
admin.save!
|
||||||
|
|
||||||
|
if admin.valid?
|
||||||
|
puts %q[
|
||||||
|
Administrator account created:
|
||||||
|
|
||||||
|
login.........admin@local.host
|
||||||
|
password......5iveL!fe
|
||||||
|
]
|
||||||
|
end
|
||||||
|
|
|
@ -8,3 +8,12 @@ admin = User.create(
|
||||||
admin.projects_limit = 10000
|
admin.projects_limit = 10000
|
||||||
admin.admin = true
|
admin.admin = true
|
||||||
admin.save!
|
admin.save!
|
||||||
|
|
||||||
|
if admin.valid?
|
||||||
|
puts %q[
|
||||||
|
Administrator account created:
|
||||||
|
|
||||||
|
login.........admin@local.host
|
||||||
|
password......5iveL!fe
|
||||||
|
]
|
||||||
|
end
|
||||||
|
|
32
install.rb
32
install.rb
|
@ -1,32 +0,0 @@
|
||||||
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"
|
|
44
update.rb
44
update.rb
|
@ -1,44 +0,0 @@
|
||||||
root_path = File.expand_path(File.dirname(__FILE__))
|
|
||||||
require File.join(root_path, "lib", "color")
|
|
||||||
include Color
|
|
||||||
|
|
||||||
def version
|
|
||||||
File.read("VERSION")
|
|
||||||
end
|
|
||||||
|
|
||||||
#
|
|
||||||
# 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 yellow "== RAILS ENV | #{env}"
|
|
||||||
current_version = version
|
|
||||||
puts yellow "Your version is #{current_version}"
|
|
||||||
puts yellow "Check for new version: $ git pull origin 1x"
|
|
||||||
`git pull origin 1x` # pull from origin
|
|
||||||
|
|
||||||
# latest version
|
|
||||||
if version == current_version
|
|
||||||
puts yellow "You have a latest version"
|
|
||||||
else
|
|
||||||
puts green "Update to #{version}"
|
|
||||||
|
|
||||||
`bundle install`
|
|
||||||
|
|
||||||
# migrate db
|
|
||||||
if env == "development"
|
|
||||||
`bundle exec rake db:migrate RAILS_ENV=development`
|
|
||||||
`bundle exec rake db:migrate RAILS_ENV=test`
|
|
||||||
else
|
|
||||||
`bundle exec rake db:migrate RAILS_ENV=#{env}`
|
|
||||||
end
|
|
||||||
|
|
||||||
puts green "== Done! Now you can start/restart server"
|
|
||||||
end
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue