Skip to content

Commit 577cc33

Browse files
20240414 - don't fold code by default
1 parent 3cd31c6 commit 577cc33

File tree

3 files changed

+27
-2
lines changed

3 files changed

+27
-2
lines changed

dataManagement.qmd

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ title: "Data Management"
33
execute:
44
echo: true
55
error: true
6-
code-fold: true
76
jupyter: python3
87
format:
98
html:

django.qmd

+17-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ title: "Django"
33
execute:
44
echo: true
55
error: true
6-
code-fold: true
76
jupyter: python3
87
format:
98
html:
@@ -17,6 +16,10 @@ format:
1716

1817
`Django` is a web framework used in `Python`.
1918

19+
# `Django` Documentation
20+
21+
<https://docs.djangoproject.com>
22+
2023
# Install `Django`
2124

2225
In terminal:
@@ -36,3 +39,16 @@ Verify installation:
3639
python3 -m django --version # gets Django version
3740
```
3841

42+
# Create a `Django` Project
43+
44+
From the command line, **`cd`** into a directory where you’d like to store your code, then run the following command:
45+
46+
```{python}
47+
#| eval: false
48+
49+
django-admin startproject nameOfProject
50+
```
51+
52+
This will create a "nameOfProject" directory in your current directory.
53+
54+
# Create a `Django` App

python.qmd

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
---
22
title: "Python"
3+
execute:
4+
echo: true
5+
error: true
6+
jupyter: python3
7+
format:
8+
html:
9+
code-fold: false
10+
code-tools:
11+
source: true
12+
toggle: true
313
---
414

515
# Resources for Learning

0 commit comments

Comments
 (0)