Skip to content

Commit

Permalink
Updating documentation to reflect 5.0.0 changes in build steps (#108)
Browse files Browse the repository at this point in the history
Co-authored-by: TwizzyDizzy <[email protected]>
  • Loading branch information
TwizzyDizzy and TwizzyDizzy authored Dec 27, 2023
1 parent 09a9b8a commit 1d58bea
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Get into the directory:
```bash
cd /var/www/html/Lychee
```
Install the required dependencies.
Install the required dependencies and generate frontend assets.
```bash
composer install --no-dev
npm install
Expand Down Expand Up @@ -232,4 +232,4 @@ server {


[1]: https://getcomposer.org/
[2]: https://nodejs.org/
[2]: https://nodejs.org/
6 changes: 5 additions & 1 deletion docs/update.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,14 @@ Fully updating Lychee with `git` is the easiest way:
```bash
# download the lastest files
git pull
# update the dependencies
# update composer dependencies
composer install --no-dev
# apply the database migration
php artisan migrate
# update Node.js dependencies
npm install
# generate frontend assets
npm run build
```

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

0 comments on commit 1d58bea

Please sign in to comment.