Skip to content

Commit 1d58bea

Browse files
authored
Updating documentation to reflect 5.0.0 changes in build steps (#108)
Co-authored-by: TwizzyDizzy <[email protected]>
1 parent 09a9b8a commit 1d58bea

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

docs/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Get into the directory:
6868
```bash
6969
cd /var/www/html/Lychee
7070
```
71-
Install the required dependencies.
71+
Install the required dependencies and generate frontend assets.
7272
```bash
7373
composer install --no-dev
7474
npm install
@@ -232,4 +232,4 @@ server {
232232

233233

234234
[1]: https://getcomposer.org/
235-
[2]: https://nodejs.org/
235+
[2]: https://nodejs.org/

docs/update.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,14 @@ Fully updating Lychee with `git` is the easiest way:
1717
```bash
1818
# download the lastest files
1919
git pull
20-
# update the dependencies
20+
# update composer dependencies
2121
composer install --no-dev
2222
# apply the database migration
2323
php artisan migrate
24+
# update Node.js dependencies
25+
npm install
26+
# generate frontend assets
27+
npm run build
2428
```
2529

2630
If you have the `post-merge` hook set up the following is enough:

0 commit comments

Comments
 (0)