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
Copy file name to clipboardExpand all lines: README.md
+21-7Lines changed: 21 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,25 +7,35 @@ This repository uses a number of frameworks and libraries to work:
7
7
*[ReactJS] - A JavaScript library for building user interfaces
8
8
*[ASP.NET Core API] - Build secure REST APIs on any platform with C#
9
9
*[SQL Server] - SQL Server 2019 Express is a free edition of SQL Server
10
-
*[MongoDB] - The database for
11
-
modern applications
10
+
*[MongoDB] - The database for modern applications
11
+
*[Redis] - The database for caching
12
12
13
13
14
14
## Installation and Run
15
15
16
-
Install the dependencies and devDependencies and start the server.
16
+
Install the dependencies and dev dependencies and start the server.
17
+
18
+
You can manually install the database servers and configure the connections string by yourself.
19
+
Or you can use the below docker command to run the database automatically for you.
20
+
21
+
To up and running the database servers
22
+
23
+
```sh
24
+
$ cd .\artifacts\docker
25
+
$ docker-compose up
26
+
```
17
27
18
28
To run Auth server
19
29
20
30
```sh
21
31
$ cd .\server\AuthWebApplication\AuthWebApplication\
22
32
$ dotnet restore
23
-
$ dotnet run
33
+
$ dotnet watch run
24
34
```
25
35
Verify the deployment by navigating to your server address in your preferred browser.
26
36
27
37
```sh
28
-
http://localhost:5000/
38
+
https://localhost:5001/
29
39
```
30
40
31
41
To run Resource server
@@ -38,7 +48,7 @@ $ dotnet watch run
38
48
Verify the deployment by navigating to your server address in your preferred browser.
39
49
40
50
```sh
41
-
http://localhost:5005/
51
+
https://localhost:5003/
42
52
```
43
53
44
54
To run client
@@ -56,7 +66,11 @@ http://localhost:3000/
56
66
57
67
58
68
### How to run video
59
-
[](http://www.youtube.com/watch?v=ToEO8INViW8"React Redux JWT Authentication using ASP.NET Core API")
69
+
[](http://www.youtube.com/watch?v=ToEO8INViW8) React Redux JWT Authentication using ASP.NET Core API
70
+
71
+
72
+
With Docker
73
+
[](https://www.youtube.com/watch?v=3KcUTvjlB3g) How to run and debug the systems within less than 3 minutes
0 commit comments