2015-09-12 15:42:12 +05:30
|
|
|
#! /bin/sh
|
|
|
|
# Read configuration values
|
2015-10-24 12:51:45 +05:30
|
|
|
. /etc/gitlab/gitlab-debian.conf
|
2015-09-12 15:42:12 +05:30
|
|
|
|
|
|
|
echo "Initializing database..."
|
2015-11-09 19:02:10 +05:30
|
|
|
su ${gitlab_user} -s /bin/sh -c 'bundle exec rake gitlab:setup RAILS_ENV=production force=yes'
|
2016-01-15 23:43:54 +05:30
|
|
|
su ${gitlab_user} -s /bin/sh -c 'bundle exec rake gitlab:shell:install \
|
|
|
|
REDIS_URL=redis://localhost:6379 \
|
2015-11-10 20:57:56 +05:30
|
|
|
SHELL_ROOT_PATH=/usr/share/gitlab-shell RAILS_ENV=production'
|
2015-09-12 15:42:12 +05:30
|
|
|
echo "Precompiling assets..."
|
2015-11-09 00:12:39 +05:30
|
|
|
su ${gitlab_user} -s /bin/sh -c 'bundle exec rake assets:precompile RAILS_ENV=production'
|
2016-01-16 02:16:50 +05:30
|
|
|
su ${gitlab_user} -s /bin/sh -c 'bundle exec rake gitlab:check RAILS_ENV=production'
|
2015-10-24 12:51:45 +05:30
|
|
|
su ${gitlab_user} -s /bin/sh -c 'touch public/source.tar.gz'
|
2015-09-12 15:42:12 +05:30
|
|
|
|