File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ Get into the directory:
6868``` bash
6969cd /var/www/html/Lychee
7070```
71- Install the required dependencies.
71+ Install the required dependencies and generate frontend assets .
7272``` bash
7373composer install --no-dev
7474npm install
@@ -232,4 +232,4 @@ server {
232232
233233
234234[ 1 ] : https://getcomposer.org/
235- [ 2 ] : https://nodejs.org/
235+ [ 2 ] : https://nodejs.org/
Original file line number Diff line number Diff line change @@ -17,10 +17,14 @@ Fully updating Lychee with `git` is the easiest way:
1717``` bash
1818# download the lastest files
1919git pull
20- # update the dependencies
20+ # update composer dependencies
2121composer install --no-dev
2222# apply the database migration
2323php artisan migrate
24+ # update Node.js dependencies
25+ npm install
26+ # generate frontend assets
27+ npm run build
2428```
2529
2630If you have the ` post-merge ` hook set up the following is enough:
You can’t perform that action at this time.
0 commit comments