Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
26ff4e39
Commit
26ff4e39
authored
Aug 08, 2017
by
Rubén Dávila
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update docs with i18n info for source installations
parent
f3b21d57
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
37 additions
and
9 deletions
+37
-9
doc/install/installation.md
doc/install/installation.md
+6
-4
doc/update/9.1-to-9.2.md
doc/update/9.1-to-9.2.md
+6
-0
doc/update/9.2-to-9.3.md
doc/update/9.2-to-9.3.md
+5
-0
doc/update/9.3-to-9.4.md
doc/update/9.3-to-9.4.md
+5
-0
doc/update/patch_versions.md
doc/update/patch_versions.md
+15
-5
No files found.
doc/install/installation.md
View file @
26ff4e39
...
...
@@ -505,15 +505,17 @@ Check if GitLab and its environment are configured correctly:
sudo -u git -H bundle exec rake gitlab:env:info RAILS_ENV=production
### Compile GetText PO files
sudo -u git -H bundle exec rake gettext:pack RAILS_ENV=production
sudo -u git -H bundle exec rake gettext:po_to_json RAILS_ENV=production
### Compile Assets
sudo -u git -H yarn install --production --pure-lockfile
sudo -u git -H bundle exec rake gitlab:assets:compile RAILS_ENV=production NODE_ENV=production
### Compile GetText PO files
sudo -u git -H bundle exec rake gettext:compile RAILS_ENV=production
### Start Your GitLab Instance
sudo service gitlab start
...
...
doc/update/9.1-to-9.2.md
View file @
26ff4e39
...
...
@@ -97,6 +97,7 @@ cd /home/git/gitlab
sudo
-u
git
-H
git fetch
--all
sudo
-u
git
-H
git checkout
--
db/schema.rb
# local changes will be restored automatically
sudo
-u
git
-H
git checkout
--
locale
```
For GitLab Community Edition:
...
...
@@ -233,6 +234,11 @@ sudo -u git -H bundle clean
# Run database migrations
sudo
-u
git
-H
bundle
exec
rake db:migrate
RAILS_ENV
=
production
# Compile GetText PO files
sudo
-u
git
-H
bundle
exec
rake gettext:pack
RAILS_ENV
=
production
sudo
-u
git
-H
bundle
exec
rake gettext:po_to_json
RAILS_ENV
=
production
# Update node dependencies and recompile assets
sudo
-u
git
-H
bundle
exec
rake yarn:install gitlab:assets:clean gitlab:assets:compile
RAILS_ENV
=
production
NODE_ENV
=
production
...
...
doc/update/9.2-to-9.3.md
View file @
26ff4e39
...
...
@@ -97,6 +97,7 @@ cd /home/git/gitlab
sudo
-u
git
-H
git fetch
--all
sudo
-u
git
-H
git checkout
--
db/schema.rb
# local changes will be restored automatically
sudo
-u
git
-H
git checkout
--
locale
```
For GitLab Community Edition:
...
...
@@ -269,6 +270,10 @@ sudo -u git -H bundle clean
# Run database migrations
sudo
-u
git
-H
bundle
exec
rake db:migrate
RAILS_ENV
=
production
# Compile GetText PO files
sudo
-u
git
-H
bundle
exec
rake gettext:compile
RAILS_ENV
=
production
# Update node dependencies and recompile assets
sudo
-u
git
-H
bundle
exec
rake yarn:install gitlab:assets:clean gitlab:assets:compile
RAILS_ENV
=
production
NODE_ENV
=
production
...
...
doc/update/9.3-to-9.4.md
View file @
26ff4e39
...
...
@@ -97,6 +97,7 @@ cd /home/git/gitlab
sudo
-u
git
-H
git fetch
--all
sudo
-u
git
-H
git checkout
--
db/schema.rb
# local changes will be restored automatically
sudo
-u
git
-H
git checkout
--
locale
```
For GitLab Community Edition:
...
...
@@ -282,6 +283,10 @@ sudo -u git -H bundle clean
# Run database migrations
sudo
-u
git
-H
bundle
exec
rake db:migrate
RAILS_ENV
=
production
# Compile GetText PO files
sudo
-u
git
-H
bundle
exec
rake gettext:compile
RAILS_ENV
=
production
# Update node dependencies and recompile assets
sudo
-u
git
-H
bundle
exec
rake yarn:install gitlab:assets:clean gitlab:assets:compile
RAILS_ENV
=
production
NODE_ENV
=
production
...
...
doc/update/patch_versions.md
View file @
26ff4e39
...
...
@@ -35,7 +35,7 @@ current version with `cat VERSION`).
cd
/home/git/gitlab
sudo
-u
git
-H
git fetch
--all
sudo
-u
git
-H
git checkout
--
Gemfile.lock db/schema.rb
sudo
-u
git
-H
git checkout
--
Gemfile.lock db/schema.rb
locale
sudo
-u
git
-H
git checkout LATEST_TAG
-b
LATEST_TAG
```
...
...
@@ -56,11 +56,21 @@ sudo -u git -H bundle clean
# Run database migrations
sudo
-u
git
-H
bundle
exec
rake db:migrate
RAILS_ENV
=
production
### 4. Compile GetText PO files
Internationalization was added
in
`
v9.2.0
`
so these commands are only
required
for
versions equal or major to it.
```
bash
sudo -u git -H bundle exec rake gettext:pack RAILS_ENV=production
sudo -u git -H bundle exec rake gettext:po_to_json RAILS_ENV=production
```
# Clean up assets and cache
sudo -u git -H bundle exec rake yarn:install gitlab:assets:clean gitlab:assets:compile cache:clear RAILS_ENV=production NODE_ENV=production
```
###
4
. Update gitlab-workhorse to the corresponding version
###
5
. Update gitlab-workhorse to the corresponding version
```
bash
cd
/home/git/gitlab
...
...
@@ -68,7 +78,7 @@ cd /home/git/gitlab
sudo
-u
git
-H
bundle
exec
rake
"gitlab:workhorse:install[/home/git/gitlab-workhorse]"
RAILS_ENV
=
production
```
###
5
. Update gitlab-shell to the corresponding version
###
6
. Update gitlab-shell to the corresponding version
```
bash
cd
/home/git/gitlab-shell
...
...
@@ -78,14 +88,14 @@ sudo -u git -H git checkout v`cat /home/git/gitlab/GITLAB_SHELL_VERSION` -b v`ca
sudo
-u
git
-H
sh
-c
'if [ -x bin/compile ]; then bin/compile; fi'
```
###
6
. Start application
###
7
. Start application
```
bash
sudo
service gitlab start
sudo
service nginx restart
```
###
7
. Check application status
###
8
. Check application status
Check if GitLab and its environment are configured correctly:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment