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

Merge branch 'ink-credentials' into 'staging'

use ink credentials from environment variables

See merge request !46
parents 3629ee51 46e14169
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