Add detailed instructions how to update GDK with webpack
3 unresolved threads
3 unresolved threads
Merge request reports
Activity
@axil Is it ready for the review? I see neither
WIP
, nor assigneeassigned to @grzesiek
Oh, yeah it's ready for review :)
cc @mikegreiling for another opinion too.
8 8 9 9 - Add webpack process to Procfile configure it within gitlab.yml !237 10 10 11 For existing GDK installations, manual action is required to update GDK. 12 Assuming `origin` is the upstream repo, do the following: 13 14 1. First, update the CE/EE repo: 15 16 ``` 17 cd <gitlab-ce-dir> 18 git pull origin master 19 bundle install && npm purge && npm install 20 bundle exec rake webpack:compile Do we really need to compile assets to make it work in development environment? As far as I remember assets are being served from the memory. What do you think @mikegreiling?
20 bundle exec rake webpack:compile 21 ``` 22 23 1. Pull the new GDK changes: 24 25 ``` 26 cd <gdk-dir> 27 git pull origin master 28 ``` 29 30 1. Make sure postgres is running: 31 32 ``` 33 cd <gdk-dir> 34 gdk run db 35 ``` @axil @mikegreiling I left only two questions! Thanks for documenting that!
assigned to @axil
28 ``` 29 30 1. Make sure postgres is running: 31 32 ``` 33 cd <gdk-dir> 34 gdk run db 35 ``` 36 37 1. Then, **open a separate terminal window** and update GDK along with all its 38 components: 39 40 ``` 41 cd <gdk-dir> 42 gdk reconfigure 43 gdk update maybe we should also have:
1. Then stop the `gdk run db` process running in the first tab. It must be restarted once `gdk reconfigure` has been run.
Edited by username-removed-636429added 1 commit
- 9cdd0a9e - Split info on GDK update and webpack troubleshooting
added 1 commit
- 19b2cb0d - Split info on GDK update and webpack troubleshooting
mentioned in commit 5fc1b28b
Please register or sign in to reply