Commit c78ce746e56ed3c21bed6e16913561288554f6b0
1 parent
cabde950
Exists in
master
and in
4 other branches
updated ubuntu install scripts
Showing
4 changed files
with
10 additions
and
14 deletions
Show diff stats
install/README
install/ubuntu_gitlab.sh
1 | sudo pip install pygments | 1 | sudo pip install pygments |
2 | sudo apt-get install python-dev | 2 | sudo apt-get install python-dev |
3 | sudo gem install bundler | 3 | sudo gem install bundler |
4 | +git clone git://github.com/gitlabhq/gitlabhq.git | ||
5 | +cd gitlabhq | ||
4 | bundle install --without development test | 6 | bundle install --without development test |
5 | bundle exec rake db:setup RAILS_ENV=production | 7 | bundle exec rake db:setup RAILS_ENV=production |
6 | bundle exec rake db:seed_fu RAILS_ENV=production | 8 | bundle exec rake db:seed_fu RAILS_ENV=production |
install/ubuntu_gitolite.sh
@@ -7,9 +7,6 @@ sudo adduser \ | @@ -7,9 +7,6 @@ sudo adduser \ | ||
7 | --home /home/git \ | 7 | --home /home/git \ |
8 | git | 8 | git |
9 | 9 | ||
10 | - | ||
11 | -PATH=/home/dzaporozhets/bin:$PATH | ||
12 | - | ||
13 | # Add your user to git group | 10 | # Add your user to git group |
14 | sudo usermod -a -G git `eval whoami` | 11 | sudo usermod -a -G git `eval whoami` |
15 | 12 |