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
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ Install Docker Desktop
7
7
8
8
**_Make sure backend\entrypoint.sh has LF format and not CRLF format_**
9
9
10
-
You shouldn't have to make any other changes to get this up and running, but here's some things to note:
10
+
You shouldn't have to make any other changes to get the app up and running, but here's some things to note:
11
11
12
12
- The default login credentials are admin and admin_password. These can be changed in backend/.env.
13
13
@@ -25,7 +25,7 @@ For development mode without NGINX server (recommended for development), run the
25
25
```sh
26
26
docker-compose -f "docker-compose.dev.yml" up -d --build
27
27
```
28
-
The react frontend should be available at `http://localhost:3000/` and django backend at `http://localhost:8000/` (django admin at `http://localhost:8000/admin/`). This mode supports both react hot reloading and django auto-refresh with changes.
28
+
The react frontend should be available at `http://localhost:3000/` and django backend at `http://localhost:8000/` (django admin at `http://localhost:8000/admin/`).
29
29
30
30
## Features
31
31
### Forgot Password:
@@ -34,7 +34,7 @@ The react frontend should be available at `http://localhost:3000/` and django ba
34
34
$id = $(docker ps -aqf "name=backend")
35
35
docker logs --tail 1000 -f $id
36
36
```
37
-
- Upon submitting a valid email (default is ), you should get a path like `http://localhost:3000/password_reset?token=abcdefgxyz123`; paste this in your browser to access the password reset form. The password reset form first validates the token;if the token is valid, it presents the password reset interface and allows the user to provide a new password. If the token is invalid, it will redirect the user to the login page.
37
+
- Upon submitting a valid email (default is admin@example.com), you should get a path like `http://localhost:3000/password_reset?token=abcdefgxyz123`; paste this in your browser to access the password reset form. The password reset form first validates the token;if the token is valid, it presents the password reset interface and allows the user to provide a new password. If the token is invalid, it will redirect the user to the login page.
38
38
39
39
Check out the Django docs starting [here](https://docs.djangoproject.com/en/3.1/topics/email/#smtp-backend) in order to update the Email Backend from a console output to an actual SMTP backend.
0 commit comments