Skip to content

Commit 90c3e1c

Browse files
committed
add references
1 parent 3a41f28 commit 90c3e1c

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,12 @@ Fullstack with Spring Boot:
4141
Fullstack with Django:
4242
> [Angular + Django example](https://bezkoder.com/django-angular-13-crud-rest-framework/)
4343
44+
> [Angular + Django + MySQL](https://www.bezkoder.com/django-angular-mysql/)
45+
46+
> [Angular + Django + PostgreSQL](https://www.bezkoder.com/django-angular-postgresql/)
47+
48+
> [Angular + Django + MongoDB](https://www.bezkoder.com/django-angular-mongodb/)
49+
4450
## Development server
4551

4652
Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.
Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
<div class="card">
22
<div class="card-header">List of Files</div>
3-
<ul
4-
class="list-group list-group-flush"
5-
*ngFor="let file of fileUploads"
6-
>
7-
<li class="list-group-item">
8-
<app-upload-details [fileUpload]='file'></app-upload-details>
3+
<ul class="list-group list-group-flush">
4+
<li class="list-group-item"
5+
*ngFor="let file of fileUploads">
6+
<app-upload-details [fileUpload]="file"></app-upload-details>
97
</li>
108
</ul>
11-
</div>
9+
</div>

0 commit comments

Comments
 (0)