Skip to content
Snippets Groups Projects
Commit 5d3900f2 authored by Achilleas Pipinellis's avatar Achilleas Pipinellis
Browse files

Add detailed instructions how to update GDK with webpack

parent e5d7d885
No related branches found
No related tags found
1 merge request!247Add detailed instructions how to update GDK with webpack
Pipeline #
Loading
Loading
@@ -8,6 +8,41 @@ features.
 
- Add webpack process to Procfile configure it within gitlab.yml !237
 
For existing GDK installations, manual action is required to update GDK.
Assuming `origin` is the upstream repo, do the following:
1. First, update the CE/EE repo:
```
cd <gitlab-ce-dir>
git pull origin master
bundle install && npm purge && npm install
bundle exec rake webpack:compile
```
1. Pull the new GDK changes:
```
cd <gdk-dir>
git pull origin master
```
1. Make sure postgres is running:
```
cd <gdk-dir>
gdk run db
```
1. Then, **open a separate terminal window** and update GDK along with all its
components:
```
cd <gdk-dir>
gdk reconfigure
gdk update
```
## 2016-10-31
 
- Add root check to catch root move problems. Requires gem 0.2.3 or
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment