Skip to content
Snippets Groups Projects
Commit e933a3f1 authored by john's avatar john
Browse files

add ink endpoint environment variable

parent 8833a648
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,7 @@ const path = require('path')
const editoriaMode = require('../app/authsome_editoria')
const inkEndpoint = process.env.INK_ENDPOINT
const inkUsername = process.env.INK_USERNAME
const inkPassword = process.env.INK_PASSWORD
......@@ -25,7 +26,7 @@ module.exports = {
}
},
inkBackend: {
inkEndpoint: 'http://ink-api.coko.foundation',
inkEndpoint: inkEndpoint || 'http://ink-api.coko.foundation',
email: inkUsername,
password: inkPassword
},
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment