Skip to content
Snippets Groups Projects
Commit 46e14169 authored by Yannis Barlas's avatar Yannis Barlas
Browse files

use ink credentials from environment variables

parent 3629ee51
No related branches found
No related tags found
No related merge requests found
const editoriaMode = require('../app/authsome_editoria')
const inkUsername = process.env.INK_USERNAME
const inkPassword = process.env.INK_PASSWORD
module.exports = {
components: [
'pubsweet-component-ink-backend',
......@@ -9,8 +12,8 @@ module.exports = {
],
inkBackend: {
inkEndpoint: 'http://ink-api.coko.foundation',
email: 'editoria@coko.foundation',
password: 'editoria'
email: inkUsername,
password: inkPassword
},
mode: editoriaMode,
teams: {
......
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