Skip to content

Commit afb94e6

Browse files
committed
update README
1 parent 9321e94 commit afb94e6

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ This app was built using Java 17 and the maven wrapper. If you wish to use a dif
2020
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:
2121

2222
```
23-
docker-compose up -d
23+
docker compose up -d
2424
```
2525

2626
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.
2727

28-
> **NOTE**: If you ever want to reset the FusionAuth system, delete the volumes created by docker-compose by executing `docker-compose down -v`.
28+
> **NOTE**: If you ever want to reset the FusionAuth system, delete the volumes created by docker-compose by executing `docker compose down -v`.
2929
3030
FusionAuth will be initially configured with these settings:
3131

@@ -49,7 +49,7 @@ cd complete-application
4949
```
5050
Note: If you are on Windows swap `./mvnw` with `.\mvnw.cmd`
5151

52-
Now vist the SpringBoot app at [http://localhost:8080](http://localhost:8080)
52+
Now visit the SpringBoot app at [http://localhost:8080](http://localhost:8080)
5353
You can login with a user preconfigured during Kickstart, `richard@example.com` with the password of `password`.
5454

5555
### Further Information

kickstart/css/styles.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
:root {
22
--main-text-color: #424242;
3-
--main-accent-color: #083b94;
3+
--main-accent-color: #096324;
44
--input-background: #fbfbfb;
55
--body-background: #f7f7f7;
66
--tooltip-background: #e2e2e2;

kickstart/kickstart.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
"http://localhost:8080/login/oauth2/code/fusionauth"
6868
],
6969
"clientSecret": "super-secret-secret-that-should-be-regenerated-for-production",
70-
"logoutURL": "http://localhost:8080/logout",
70+
"logoutURL": "http://localhost:8080/",
7171
"enabledGrants": [
7272
"authorization_code",
7373
"refresh_token"

0 commit comments

Comments
 (0)