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
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
-
# Complete passkeys integration example for Spring Boot with Corbado
1
+
# Passkey integration example for Java Spring Boot
2
2
3
-
This is a sample implementation of the Corbado web component being integrated into a web application built with Spring.
3
+
This is a sample implementation of a Java Spring Boot application that offers passkey authentication. For simple passkey-first authentication, the Corbado web component is used.
4
4
5
5
## File structure
6
6
@@ -9,12 +9,12 @@ This is a sample implementation of the Corbado web component being integrated in
9
9
| ├── src/main
10
10
| | ├── java/com/corbado/springboot
11
11
| | | ├── FrontendController.java # Main controller which renders the HTML templates
12
-
| | | └── JsonReader.java # Fetches json from web URLs
12
+
| | | └── JsonReader.java # Fetches JSONs from web URLs
13
13
| | |
14
14
| | └── resources
15
15
| | ├── application.properties # Contains the environment variables
16
16
| | └── templates
17
-
| | ├── index.html # Login page with the webcomponent
17
+
| | ├── index.html # Login page with the Corbado web component
18
18
| | └── profile.html # Profile page with user information
19
19
| └── pom.xml # Contains info about the project and implementation details
20
20
```
@@ -24,11 +24,11 @@ This is a sample implementation of the Corbado web component being integrated in
24
24
Please follow the steps in [Getting started](https://docs.corbado.com/overview/getting-started) to create and configure
25
25
a project in the [Corbado developer panel](https://app.corbado.com/signin#register).
26
26
27
-
Paste your project ID in the applications.properties file.
27
+
Paste your Corbado project ID in the applications.properties file.
28
28
29
29
## Usage
30
30
31
-
Then you can run the project locally by executing the following command inside the /complete folder:
31
+
Then you can run the project locally by executing the following command inside the `/complete` folder:
0 commit comments