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
@@ -23,22 +23,22 @@ Install the following prerequisites:
23
23
2.[Node.js](https://nodejs.org/en/)
24
24
3.[Visual Studio Code](https://code.visualstudio.com/download) with the **Live Sass Compiler** extension.<br>
25
25
26
-
[Live Sass Compiler](https://marketplace.visualstudio.com/items?itemName=glenn2223.live-sass) allows us to compile Sass files to CSS files in real-time. It will watch a Sass file for changes, and then it will automatically compile that Sass file into a CSS file whenever a change is made and saved.
26
+
[Live Sass Compiler](https://marketplace.visualstudio.com/items?itemName=glenn2223.live-sass) allows us to compile Sass files to CSS files in realtime. It will watch a Sass file for changes, and then it will automatically compile that Sass file into a CSS file whenever a change is made and saved.
27
27
28
28
29
29
### Installation
30
30
31
31
#### 1. Create a virtual environment
32
32
33
-
From the **root** directory run:
33
+
From the **root** directory, run:
34
34
35
35
```bash
36
36
python -m venv venv
37
37
```
38
38
39
39
#### 2. Activate the virtual environment
40
40
41
-
From the **root** directory run:
41
+
From the **root** directory, run:
42
42
43
43
On macOS:
44
44
@@ -54,13 +54,13 @@ venv\scripts\activate
54
54
55
55
#### 3. Install required dependencies
56
56
57
-
From the **root** directory run:
57
+
From the **root** directory, run:
58
58
59
59
```bash
60
60
pip install -r requirements.txt
61
61
```
62
62
63
-
From the **root** directory run:
63
+
From the **root** directory, run:
64
64
65
65
```bash
66
66
cd static
@@ -71,7 +71,7 @@ npm install
71
71
72
72
#### 4. Run migrations
73
73
74
-
From the **root** directory run:
74
+
From the **root** directory, run:
75
75
76
76
```bash
77
77
python manage.py makemigrations
@@ -82,7 +82,7 @@ python manage.py migrate
82
82
83
83
#### 5. Create an admin user to access the Django Admin interface
84
84
85
-
From the **root** directory run:
85
+
From the **root** directory, run:
86
86
87
87
```bash
88
88
python manage.py createsuperuser
@@ -92,7 +92,7 @@ When prompted, enter a username, email, and password.
0 commit comments