You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<br> This project uses **Django v4.2.4**. For Django to work, you must install a correct version of Python on your machine. More information [here](https://django.readthedocs.io/en/stable/faq/install.html).
23
21
2.[Visual Studio Code](https://code.visualstudio.com/download)
24
22
23
+
## Installation
25
24
26
-
### Installation
27
-
28
-
#### 1. Create a virtual environment
25
+
### 1. Create a virtual environment
29
26
30
27
From the **root** directory, run:
31
28
32
29
```bash
33
30
python -m venv venv
34
31
```
35
32
36
-
####2. Activate the virtual environment
33
+
### 2. Activate the virtual environment
37
34
38
35
From the **root** directory, run:
39
36
@@ -49,15 +46,15 @@ On Windows:
49
46
venv\scripts\activate
50
47
```
51
48
52
-
####3. Install required dependencies
49
+
### 3. Install required dependencies
53
50
54
51
From the **root** directory, run:
55
52
56
53
```bash
57
54
pip install -r requirements.txt
58
55
```
59
56
60
-
####4. Run migrations
57
+
### 4. Run migrations
61
58
62
59
From the **root** directory, run:
63
60
@@ -68,7 +65,7 @@ python manage.py makemigrations
68
65
python manage.py migrate
69
66
```
70
67
71
-
####5. Create an admin user to access the Django Admin interface
68
+
### 5. Create an admin user to access the Django Admin interface
0 commit comments