Skip to content

Commit

Permalink
Deployed 9526780 with MkDocs version: 1.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
programarivm committed Nov 12, 2024
1 parent 59fb43a commit 135f7c6
Show file tree
Hide file tree
Showing 10 changed files with 36 additions and 248 deletions.
6 changes: 0 additions & 6 deletions 404.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,6 @@
<div id="navbar-collapse" class="navbar-collapse collapse">
<!-- Main navigation -->
<ul class="nav navbar-nav">
<li class="navitem">
<a href="/website/." class="nav-link">Home</a>
</li>
<li class="navitem">
<a href="/website/installation/" class="nav-link">Installation</a>
</li>
<li class="navitem">
<a href="/website/architecture/" class="nav-link">Architecture</a>
</li>
Expand Down
8 changes: 1 addition & 7 deletions architecture/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,6 @@
<div id="navbar-collapse" class="navbar-collapse collapse">
<!-- Main navigation -->
<ul class="nav navbar-nav">
<li class="navitem">
<a href=".." class="nav-link">Home</a>
</li>
<li class="navitem">
<a href="../installation/" class="nav-link">Installation</a>
</li>
<li class="navitem active">
<a href="./" class="nav-link">Architecture</a>
</li>
Expand All @@ -54,7 +48,7 @@
</a>
</li>
<li class="nav-item">
<a rel="prev" href="../installation/" class="nav-link">
<a rel="prev" class="nav-link disabled">
<i class="fa fa-arrow-left"></i> Previous
</a>
</li>
Expand Down
6 changes: 0 additions & 6 deletions blog/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,6 @@
<div id="navbar-collapse" class="navbar-collapse collapse">
<!-- Main navigation -->
<ul class="nav navbar-nav">
<li class="navitem">
<a href=".." class="nav-link">Home</a>
</li>
<li class="navitem">
<a href="../installation/" class="nav-link">Installation</a>
</li>
<li class="navitem">
<a href="../architecture/" class="nav-link">Architecture</a>
</li>
Expand Down
Binary file modified featured_animation.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 0 additions & 6 deletions html-iframes/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,6 @@
<div id="navbar-collapse" class="navbar-collapse collapse">
<!-- Main navigation -->
<ul class="nav navbar-nav">
<li class="navitem">
<a href=".." class="nav-link">Home</a>
</li>
<li class="navitem">
<a href="../installation/" class="nav-link">Installation</a>
</li>
<li class="navitem">
<a href="../architecture/" class="nav-link">Architecture</a>
</li>
Expand Down
48 changes: 30 additions & 18 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,6 @@
<div id="navbar-collapse" class="navbar-collapse collapse">
<!-- Main navigation -->
<ul class="nav navbar-nav">
<li class="navitem active">
<a href="." class="nav-link">Home</a>
</li>
<li class="navitem">
<a href="installation/" class="nav-link">Installation</a>
</li>
<li class="navitem">
<a href="architecture/" class="nav-link">Architecture</a>
</li>
Expand All @@ -53,16 +47,6 @@
<i class="fa fa-search"></i> Search
</a>
</li>
<li class="nav-item">
<a rel="prev" class="nav-link disabled">
<i class="fa fa-arrow-left"></i> Previous
</a>
</li>
<li class="nav-item">
<a rel="next" href="installation/" class="nav-link">
Next <i class="fa fa-arrow-right"></i>
</a>
</li>
</ul>
</div>
</div>
Expand Down Expand Up @@ -94,6 +78,10 @@
<li class="nav-item" data-level="2"><a href="#customization" class="nav-link">Customization</a>
<ul class="nav flex-column">
</ul>
</li>
<li class="nav-item" data-level="2"><a href="#installation" class="nav-link">Installation</a>
<ul class="nav flex-column">
</ul>
</li>
</ul>
</li>
Expand Down Expand Up @@ -275,7 +263,31 @@ <h2 id="customization">Customization</h2>
<td align="left">Chinese (Simplified)</td>
</tr>
</tbody>
</table></div>
</table>
<h2 id="installation">Installation</h2>
<p>Clone the <code>chesslablab/website</code> repo into your projects folder. Then <code>cd</code> the <code>website</code> directory and create an <code>.env</code> file:</p>
<pre><code class="language-text">cp .env.example .env
</code></pre>
<p>Update the <code>.env</code> file to your specific needs.</p>
<p>Set up the browser environment variables:</p>
<pre><code class="language-text">cp assets/env.example.js assets/env.js
</code></pre>
<p>Update the <code>env.js</code> file to your specific needs.</p>
<p>Make sure to have installed the <code>fullchain.pem</code> and <code>privkey.pem</code> files into the <code>docker/nginx/ssl</code> folder, and run the Docker containers in detached mode in the background:</p>
<pre><code class="language-txt">docker compose -f docker-compose.default.yml up -d
</code></pre>
<p>Clear the cache:</p>
<pre><code class="language-text">docker exec -itu 1000:1000 chess_website_php php bin/console cache:clear
</code></pre>
<p>Download the assets:</p>
<pre><code class="language-text">docker exec -itu 1000:1000 chess_website_php php bin/console importmap:install
</code></pre>
<p>Compile the assets:</p>
<pre><code class="language-text">docker exec -itu 1000:1000 chess_website_php php bin/console asset-map:compile
</code></pre>
<p>Finally, if you are running the website in a local development environment, you may want to add a domain name entry to your <code>/etc/hosts</code> file.</p>
<pre><code class="language-txt">127.0.0.1 chesslablab.org
</code></pre></div>
</div>
</div>

Expand Down Expand Up @@ -358,5 +370,5 @@ <h4 class="modal-title" id="keyboardModalLabel">Keyboard Shortcuts</h4>

<!--
MkDocs version : 1.5.3
Build Date UTC : 2024-11-02 10:33:54.497214+00:00
Build Date UTC : 2024-11-12 18:23:07.651166+00:00
-->
195 changes: 0 additions & 195 deletions installation/index.html

This file was deleted.

2 changes: 1 addition & 1 deletion search/search_index.json

Large diffs are not rendered by default.

13 changes: 4 additions & 9 deletions sitemap.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,22 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://chesslablab.github.io/website/</loc>
<lastmod>2024-11-02</lastmod>
<lastmod>2024-11-12</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://chesslablab.github.io/website/architecture/</loc>
<lastmod>2024-11-02</lastmod>
<lastmod>2024-11-12</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://chesslablab.github.io/website/blog/</loc>
<lastmod>2024-11-02</lastmod>
<lastmod>2024-11-12</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://chesslablab.github.io/website/html-iframes/</loc>
<lastmod>2024-11-02</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://chesslablab.github.io/website/installation/</loc>
<lastmod>2024-11-02</lastmod>
<lastmod>2024-11-12</lastmod>
<changefreq>daily</changefreq>
</url>
</urlset>
Binary file modified sitemap.xml.gz
Binary file not shown.

0 comments on commit 135f7c6

Please sign in to comment.