Skip to content

Commit e03bd2a

Browse files
committed
readme update
1 parent 6e6c274 commit e03bd2a

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,17 @@ Step 2. Add the dependency in the POM file:
6565

6666
## Initialization
6767

68-
**Step 1**. Create a `config.properties` file inside `src/main/resources` of your project. And put essential values of keys [UrlEndpoint, PrivateKey, PublicKey], no need to use quote(`'` or `"`) in values.
68+
**Step 1**. Create a `config.properties` file inside `src/main/resources` of your project. And put essential values of keys [UrlEndpoint, PrivateKey, PublicKey], no need to use quote(`'` or `"`) in values.
69+
70+
You can get the value of [URL-endpoint](https://imagekit.io/dashboard#url-endpoints) from your ImageKit dashboard. API keys can be obtained from the [developer](https://imagekit.io/dashboard/developer/api-keys) section in your ImageKit dashboard.
6971

7072
```editorconfig
7173
# Put essential values of keys [UrlEndpoint, PrivateKey, PublicKey]
72-
UrlEndpoint=<-YOUR-ENDPOINT-URL-HERE->
73-
PrivateKey=<-YOUR-PRIVATE-KEY-HERE->
74-
PublicKey=<-YOUR-PUBLIC-KEY-HERE->
74+
UrlEndpoint=your_public_api_key
75+
PrivateKey=your_private_api_key
76+
PublicKey=https://ik.imagekit.io/imagekit_id/
7577
```
78+
7679
**Step 2**. Then you need to initialize ImageKit with that configuration.
7780

7881
```java

0 commit comments

Comments
 (0)