File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 15
15
"value" : " production"
16
16
},
17
17
"TOOLJET_HOST" : {
18
- "description" : " Public URL of ToolJet installtion." ,
19
- "value" : " https://app.tooljet.io"
18
+ "description" : " Public URL of ToolJet installtion. This is usually https://<app-name-in-first-step>.herokuapp.com" ,
19
+ "value" : " https://<app-name-in-first-step>.herokuapp.com"
20
+ },
21
+ "TOOLJET_SERVER_URL" : {
22
+ "description" : " URL of ToolJet server installtion. (This is same as the TOOLJET_HOST for Heroku deployments)" ,
23
+ "value" : " https://<app-name-in-first-step>.herokuapp.com"
20
24
},
21
25
"LOCKBOX_MASTER_KEY" : {
22
26
"description" : " Key for encrypting datasource credentials." ,
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ const path = require('path');
4
4
const environment = process . env . NODE_ENV === 'production' ? 'production' : 'development' ;
5
5
6
6
const API_URL = {
7
- production : 'https://server.tooljet.io' ,
7
+ production : process . env . TOOLJET_SERVER_URL ,
8
8
development : 'http://localhost:3000'
9
9
} ;
10
10
You can’t perform that action at this time.
0 commit comments