Skip to content

Commit

Permalink
Deploying to gh-pages from @ 1d58bea 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
ildyria committed Dec 27, 2023
1 parent e3ce2d5 commit 838d1b6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ <h4 id="from-the-master-branch"><a class="toclink" href="#from-the-master-branch
<p>Get into the directory:</p>
<pre><code class="language-bash">cd /var/www/html/Lychee
</code></pre>
<p>Install the required dependencies.</p>
<p>Install the required dependencies and generate frontend assets.</p>
<pre><code class="language-bash">composer install --no-dev
npm install
npm run build
Expand Down
2 changes: 1 addition & 1 deletion docs/installation.html
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ <h4 id="from-the-master-branch"><a class="toclink" href="#from-the-master-branch
<p>Get into the directory:</p>
<pre><code class="language-bash">cd /var/www/html/Lychee
</code></pre>
<p>Install the required dependencies.</p>
<p>Install the required dependencies and generate frontend assets.</p>
<pre><code class="language-bash">composer install --no-dev
npm install
npm run build
Expand Down
6 changes: 5 additions & 1 deletion docs/update.html
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,14 @@ <h2 id="update-using-git"><a class="toclink" href="#update-using-git">Update usi
<p>Fully updating Lychee with <code>git</code> is the easiest way:</p>
<pre><code class="language-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
</code></pre>
<p>If you have the <code>post-merge</code> hook set up the following is enough:</p>
<pre><code class="language-bash">git pull
Expand Down

0 comments on commit 838d1b6

Please sign in to comment.