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
When prompted, enter a username, email, and password.
142
142
143
-
####Frontend
143
+
### Frontend
144
144
145
145
#### 1. Install required frontend dependencies
146
146
@@ -171,59 +171,59 @@ BACKEND_HOST=127.0.0.1
171
171
BACKEND_URL=http://127.0.0.1:8000
172
172
```
173
173
174
-
###Run the application
174
+
## Run the application
175
175
176
176
To run the application, you need to have both the backend and the frontend up and running.
177
177
178
-
####1. Run backend
178
+
### 1. Run backend
179
179
180
180
From the **backend** directory, run:
181
181
182
182
```bash
183
183
python manage.py runserver
184
184
```
185
185
186
-
####2. Run frontend
186
+
### 2. Run frontend
187
187
188
188
From the **frontend** directory, run:
189
189
190
190
```bash
191
191
npm run dev
192
192
```
193
193
194
-
#### 3. View the application
194
+
## View the application
195
195
196
196
Go to http://localhost:3000/ to view the application.
197
197
198
-
###Run the tests
198
+
## Run the tests
199
199
200
-
####1. Run the backend tests
200
+
### 1. Run the backend tests
201
201
202
202
From the **backend** directory, run:
203
203
204
204
```bash
205
205
python manage.py test --pattern="tests.py"
206
206
```
207
207
208
-
####2. Run the frontend tests
208
+
### 2. Run the frontend tests
209
209
210
210
From the **frontend** directory, run:
211
211
212
212
```bash
213
213
npm run test
214
214
```
215
215
216
-
###Add data to the application
216
+
## Add data to the application
217
217
218
218
Add data through Django Admin.
219
219
220
220
Go to http://127.0.0.1:8000/admin to access the Django Admin interface and sign in using the admin credentials.
221
221
222
-
###Customize the application
222
+
## Customize the application
223
223
224
224
This section describes how to customize the application.
225
225
226
-
####Changing Section Titles and Subtitles
226
+
### Changing Section Titles and Subtitles
227
227
228
228
#### 1. About
229
229
@@ -245,22 +245,22 @@ To modify the title and subtitle of the **Testimonials** section, make changes i
245
245
246
246
To modify the title and subtitle of the **Contact** section, make changes in the `frontend/src/components/Contact.js` file.
247
247
248
-
####Changing Colors
248
+
### Changing Colors
249
249
250
250
To modify the colors in the application, make changes in the `frontend/src/theme/theme.js` file.
251
251
252
-
####Changing Fonts
252
+
### Changing Fonts
253
253
254
254
To modify the fonts in the application, first, add a new font to the `frontend/src/pages/_document.js` file, and then make changes in the `frontend/src/theme/typography.js` file.
255
255
256
-
####Changing Logo
256
+
### Changing Logo
257
257
258
258
To modify the logo in the application, make changes in the `frontend/src/layout/Header.js` and `frontend/src/layout/Sidebar.js` files.
259
259
260
-
####Changing Buttons in the Hero Section
260
+
### Changing Buttons in the Hero Section
261
261
262
262
To modify the two buttons in the Hero section, make changes in the `frontend/src/components/HeroButtons.js` file.
0 commit comments