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
+14-6Lines changed: 14 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,21 +15,22 @@ You will need the following things properly installed on your computer.
15
15
16
16
The root of this project directory (next to this README) are two files [a Docker compose file](./docker-compose.yml) and an [environment variables configuration file](./.env). Assuming you have Docker installed on your machine, you can stand up FusionAuth up on your machine with:
17
17
18
-
```
18
+
```sh
19
19
docker compose up -d
20
20
```
21
21
22
22
The FusionAuth configuration files also make use of a unique feature of FusionAuth, called [Kickstart](https://fusionauth.io/docs/v1/tech/installation-guide/kickstart): when FusionAuth comes up for the first time, it will look at the [Kickstart file](./kickstart/kickstart.json) and mimic API calls to configure FusionAuth for use when it is first run.
23
23
24
-
> **NOTE**: If you ever want to reset the FusionAuth system, delete the volumes created by docker-compose by executing `docker-compose down -v`.
24
+
> **NOTE**: If you ever want to reset the FusionAuth system, delete the volumes created by docker-compose by executing `dockercompose down -v`.
25
25
26
26
FusionAuth will be initially configured with these settings:
27
27
28
-
* Your client Id is: `e9fdb985-9173-4e01-9d73-ac2d60d1dc8e`
28
+
* Your client Id is: `e9fdb985-9173-4e01-9d73-ac2d60d1dc8e`.
29
29
* Your client secret is: `super-secret-secret-that-should-be-regenerated-for-production`
30
-
* Your example username is `richard@example.com` and your password is `password`.
30
+
* Your example teller username is `teller@example.com` and your password is `password`. They have the role `teller`.
31
+
* Your example customer username is `customer@example.com` and your password is `password`. They have the role `customer`.
31
32
* Your admin username is `admin@example.com` and your password is `password`.
32
-
* Your fusionAuthBaseUrl is 'http://localhost:9011/'
33
+
* Your fusionAuthBaseUrl is 'http://localhost:9011/'.
33
34
34
35
You can log into the [FusionAuth admin UI](http://localhost:9011/admin) and look around if you want, but with Docker/Kickstart you don't need to.
35
36
@@ -38,7 +39,8 @@ You can log into the [FusionAuth admin UI](http://localhost:9011/admin) and look
38
39
The `complete-application` directory contains a minimal app configured to authenticate with locally running FusionAuth.
0 commit comments