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