Refactor documentation for reverse proxy and routing guides
Deploy to Production / deploy (push) Successful in 5s

This commit is contained in:
Илья Глазунов
2025-12-08 01:05:52 +03:00
parent 58660ec8d4
commit 00119ce463
12 changed files with 521 additions and 517 deletions
+10 -10
View File
@@ -32,32 +32,32 @@
<h3>Install from Release (Recommended)</h3>
<p>Download the latest wheel file from <a href="https://git.pyserve.org/Shifty/pyserveX/releases">Git Releases</a> and install it:</p>
<pre><span class="comment"># Download the wheel file from releases</span>
<span class="comment"># Example: pyserve-0.7.0-py3-none-any.whl</span>
<pre><code class="language-bash"># Download the wheel file from releases
# Example: pyserve-0.7.0-py3-none-any.whl
pip install pyserve-0.7.0-py3-none-any.whl</pre>
pip install pyserve-0.7.0-py3-none-any.whl</code></pre>
<p>After installation, the <code>pyserve</code> command will be available in your terminal:</p>
<pre>pyserve --version</pre>
<pre><code class="language-bash">pyserve --version</code></pre>
<h3>Install from Source</h3>
<p>For development or if you want the latest changes:</p>
<pre><span class="comment"># Clone the repository</span>
<pre><code class="language-bash"># Clone the repository
git clone https://github.com/ShiftyX1/PyServe.git
cd PyServe
<span class="comment"># Install with Poetry (recommended for development)</span>
# Install with Poetry (recommended for development)
make init
<span class="comment"># Or build and install the package</span>
# Or build and install the package
make build
pip install dist/pyserve-*.whl</pre>
pip install dist/pyserve-*.whl</code></pre>
<h3>Verify Installation</h3>
<p>Check that pyserve is installed correctly:</p>
<pre>pyserve --version
<span class="comment"># Output: pyserve 0.7.0</span></pre>
<pre><code class="language-bash">pyserve --version
# Output: pyserve 0.7.0</code></pre>
<h3>Dependencies</h3>
<p>pyserve automatically installs the following dependencies:</p>