Skip to content

Commit 131e5ed

Browse files
author
Quarto GHA Workflow Runner
committed
Built site for gh-pages
1 parent fd061b6 commit 131e5ed

6 files changed

Lines changed: 108 additions & 99 deletions

File tree

.nojekyll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
de4d7b0b
1+
7fe5f7f1

dataManagement.html

Lines changed: 85 additions & 85 deletions
Large diffs are not rendered by default.

django.html

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,7 @@ <h2 id="toc-title">Contents</h2>
226226
</ul></li>
227227
<li><a href="#run-django-project" id="toc-run-django-project" class="nav-link" data-scroll-target="#run-django-project"><span class="header-section-number">8</span> Run <code>Django</code> Project</a></li>
228228
<li><a href="#view-in-browser" id="toc-view-in-browser" class="nav-link" data-scroll-target="#view-in-browser"><span class="header-section-number">9</span> View in Browser</a></li>
229+
<li><a href="#django-admin-console" id="toc-django-admin-console" class="nav-link" data-scroll-target="#django-admin-console"><span class="header-section-number">10</span> <code>Django</code> Admin Console</a></li>
229230
</ul>
230231
</nav>
231232
</div>
@@ -262,19 +263,19 @@ <h1 data-number="2"><span class="header-section-number">2</span> <code>Django</c
262263
<section id="install-django" class="level1" data-number="3">
263264
<h1 data-number="3"><span class="header-section-number">3</span> Install <code>Django</code></h1>
264265
<p>In terminal:</p>
265-
<div id="9cd7b4ee" class="cell" data-execution_count="1">
266+
<div id="eaa340f9" class="cell" data-execution_count="1">
266267
<div class="sourceCode cell-code" id="cb1"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb1-1"><a href="#cb1-1" aria-hidden="true" tabindex="-1"></a>python3 <span class="op">-</span>m pip install Django<span class="op">==</span><span class="fl">5.0.4</span> <span class="co"># install Django on Mac</span></span>
267268
<span id="cb1-2"><a href="#cb1-2" aria-hidden="true" tabindex="-1"></a>py <span class="op">-</span>m pip install Django<span class="op">==</span><span class="fl">5.0.4</span> <span class="co"># install Django on Windows</span></span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
268269
</div>
269270
<p>Verify installation:</p>
270-
<div id="ec52b6eb" class="cell" data-execution_count="2">
271+
<div id="09e46902" class="cell" data-execution_count="2">
271272
<div class="sourceCode cell-code" id="cb2"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb2-1"><a href="#cb2-1" aria-hidden="true" tabindex="-1"></a>python3 <span class="op">-</span>m django <span class="op">--</span>version <span class="co"># gets Django version</span></span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
272273
</div>
273274
</section>
274275
<section id="create-a-django-project" class="level1" data-number="4">
275276
<h1 data-number="4"><span class="header-section-number">4</span> Create a <code>Django</code> Project</h1>
276277
<p>From the command line, <strong><code>cd</code></strong> into a directory where you’d like to store your code, then run the following command:</p>
277-
<div id="9d05898b" class="cell" data-execution_count="3">
278+
<div id="651b102b" class="cell" data-execution_count="3">
278279
<div class="sourceCode cell-code" id="cb3"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb3-1"><a href="#cb3-1" aria-hidden="true" tabindex="-1"></a>django<span class="op">-</span>admin startproject nameOfProject</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
279280
</div>
280281
<p>This will create a “nameOfProject” directory in your current directory.</p>
@@ -322,7 +323,7 @@ <h1 data-number="6"><span class="header-section-number">6</span> Create a <code>
322323
<li>wiki</li>
323324
</ul>
324325
<p>To create a <code>Django</code> app, <strong><code>cd</code></strong> into the project folder type the following:</p>
325-
<div id="e266ff8d" class="cell" data-execution_count="4">
326+
<div id="018979fa" class="cell" data-execution_count="4">
326327
<div class="sourceCode cell-code" id="cb4"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb4-1"><a href="#cb4-1" aria-hidden="true" tabindex="-1"></a>python3 manage.py startapp nameOfApp</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
327328
</div>
328329
<p>This will create the “nameOfApp” folder and files for the app.</p>
@@ -377,14 +378,18 @@ <h2 data-number="7.7" class="anchored" data-anchor-id="migrations"><span class="
377378
</section>
378379
<section id="run-django-project" class="level1" data-number="8">
379380
<h1 data-number="8"><span class="header-section-number">8</span> Run <code>Django</code> Project</h1>
380-
<div id="c3aaf175" class="cell" data-execution_count="5">
381+
<div id="d859e4e1" class="cell" data-execution_count="5">
381382
<div class="sourceCode cell-code" id="cb5"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb5-1"><a href="#cb5-1" aria-hidden="true" tabindex="-1"></a>python3 manage.py runserver</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
382383
</div>
383384
</section>
384385
<section id="view-in-browser" class="level1" data-number="9">
385386
<h1 data-number="9"><span class="header-section-number">9</span> View in Browser</h1>
386387
<p><a href="http://127.0.0.1:8000" class="uri">http://127.0.0.1:8000</a></p>
387388
<p><code>localhost:8000</code></p>
389+
</section>
390+
<section id="django-admin-console" class="level1" data-number="10">
391+
<h1 data-number="10"><span class="header-section-number">10</span> <code>Django</code> Admin Console</h1>
392+
<p><a href="http://127.0.0.1:8000/admin" class="uri">http://127.0.0.1:8000/admin</a></p>
388393

389394

390395
<!-- -->
@@ -1028,6 +1033,10 @@ <h1 data-number="9"><span class="header-section-number">9</span> View in Browser
10281033
<span id="cb6-154"><a href="#cb6-154" aria-hidden="true" tabindex="-1"></a><span class="ot">&lt;http://127.0.0.1:8000&gt;</span></span>
10291034
<span id="cb6-155"><a href="#cb6-155" aria-hidden="true" tabindex="-1"></a></span>
10301035
<span id="cb6-156"><a href="#cb6-156" aria-hidden="true" tabindex="-1"></a><span class="in">`localhost:8000`</span></span>
1036+
<span id="cb6-157"><a href="#cb6-157" aria-hidden="true" tabindex="-1"></a></span>
1037+
<span id="cb6-158"><a href="#cb6-158" aria-hidden="true" tabindex="-1"></a><span class="fu"># `Django` Admin Console</span></span>
1038+
<span id="cb6-159"><a href="#cb6-159" aria-hidden="true" tabindex="-1"></a></span>
1039+
<span id="cb6-160"><a href="#cb6-160" aria-hidden="true" tabindex="-1"></a><span class="ot">&lt;http://127.0.0.1:8000/admin&gt;</span></span>
10311040
</code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
10321041
</div></div></div></div></div>
10331042
</div> <!-- /content -->

python.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ <h1 data-number="2"><span class="header-section-number">2</span> PC vs Mac</h1>
247247
<h1 data-number="3"><span class="header-section-number">3</span> Install Python</h1>
248248
<p>Download and install the latest version of <code>Python</code>: <a href="https://www.python.org/downloads/" class="uri">https://www.python.org/downloads/</a></p>
249249
<p>Verify installation:</p>
250-
<div id="292fc581" class="cell" data-execution_count="1">
250+
<div id="9152e529" class="cell" data-execution_count="1">
251251
<div class="sourceCode cell-code" id="cb1"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb1-1"><a href="#cb1-1" aria-hidden="true" tabindex="-1"></a>python3 <span class="op">-</span>V <span class="co"># gets Python version</span></span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
252252
</div>
253253
</section>

0 commit comments

Comments
 (0)