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
vcxconfig.APP_ID="YOUR_APP_ID"; // Enter Your App ID
79
-
vcxconfig.APP_KEY="YOUR_APP_KEY"; // Enter Your App Key
56
+
Before you can run this application, configure the service. Copy the `server/example.env` as `server/.env` and update the values. Or you can set following system environment variables instead:
57
+
58
+
```javascript
59
+
SERVICE_PORT-Node port on which your application will run. Default port set is 5000
60
+
ENABLEX_APP_ID- Your EnableX `App ID`- It's your username for EnableX API and can be found at Dashboard > Projects https://portal.enablex.io/dashboard/
61
+
ENABLEX_APP_KEY - Your EnableX `App Key` - - It's your password for EnableX API and can be found at Dashboard > Projects https://portal.enablex.io/dashboard/
62
+
```
63
+
64
+
For Mac and Linux, open a terminal window and type the following commands. Note - Replace all the characters after the `=` with values from your EnableX account:
65
+
```javascript
66
+
exportSERVICE_PORT=XXXX
67
+
exportENABLEX_APP_ID=XXXXXXXXXX
68
+
exportENABLEX_APP_KEY=XXXXXXXXX
69
+
```
70
+
71
+
On Windows, open a powershell / command window and type the following commands. Note that there is no `=`, just the key and value separated by a space:
0 commit comments