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
1. Navigate to the `etc/config.properties` file in your Karaf installation.
60
-
2. Add the following entry under the `bootdelegation` section to allow OSGi bundles to access Keploy artifacts:
60
+
2. Add the following entries under the `bootdelegation` section to allow OSGi bundles to access Keploy artifacts:
61
61
62
62
```properties
63
63
org.osgi.framework.bootdelegation = \
64
-
com.sun.*, \
65
-
javax.transaction, \
66
-
javax.transaction.xa, \
67
-
javax.xml.crypto, \
68
-
javax.xml.crypto.*, \
69
-
javax.security.cert, \
70
-
jdk.nashorn.*, \
71
-
sun.*, \
72
-
jdk.internal.reflect, \
73
-
jdk.internal.reflect.*, \
74
-
org.apache.karaf.jaas.boot, \
75
-
org.apache.karaf.jaas.boot.principal, \
76
-
io.keploy.*
64
+
... \
65
+
io.keploy.*, \
66
+
javax.servlet, \
67
+
javax.servlet.http
77
68
```
78
69
79
-
## Step 3: Start Apache Karaf and Export Environment Variables
70
+
## Step 3: Export Environment Variables
80
71
81
-
1. Start Apache Karaf by navigating to the `bin` directory and running:
82
-
83
-
```bash
84
-
./karaf
85
-
```
86
-
87
-
2. Export the API key required for Keploy to function by running the following command in the same terminal session:
72
+
1. Export the API key specific to your user, as mentioned on [Keploy's User Dashboard](https://app.keploy.io/users), which is required for Keploy to function, by running the following command in the same terminal session:
88
73
89
74
```bash
90
75
export API_KEY="<API_KEY>"
91
76
```
92
77
93
78
Replace the `API_KEY` value with your actual API key if different.
94
79
95
-
3. Export the application path to point to your target folder containing Java classes:
80
+
2. Export the application path to point to your target folder containing Java classes:
0 commit comments