Provide defaults for env vars
This commit is contained in:
parent
3c73d17264
commit
d5f77ca116
@ -27,9 +27,9 @@ function verifyResponse(res, errorMessage) {
|
|||||||
|
|
||||||
function getOwner() {
|
function getOwner() {
|
||||||
return {
|
return {
|
||||||
username: process.env.APPSTORE_USERNAME,
|
username: process.env.APPSTORE_USERNAME || 'test',
|
||||||
password: process.env.APPSTORE_PASSWORD,
|
password: process.env.APPSTORE_PASSWORD || 'test1234',
|
||||||
email: process.env.APPSTORE_EMAIL
|
email: process.env.APPSTORE_EMAIL || 'test@cloudron.io'
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user