We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da02fbc commit 1fc602bCopy full SHA for 1fc602b
registry/index.js
@@ -1,8 +1,9 @@
1
+require('dotenv').config()
2
const oc = require('oc');
3
4
const configuration = {
5
verbosity: 0,
- baseUrl: 'https://opencomponents-site-registry.herokuapp.com/',
6
+ baseUrl: process.env.BASEURL,
7
port: process.env.PORT || 3000,
8
tempDir: './temp/',
9
refreshInterval: 600,
registry/package.json
@@ -11,6 +11,7 @@
11
},
12
"license": "MIT",
13
"dependencies": {
14
+ "dotenv": "^4.0.0",
15
"oc": "^0.39.8"
16
}
17
0 commit comments