* Updated configuration * Updated pipeline * Updated nightly pipeline * Bumped version * updated if statement
50 lines
1.1 KiB
JavaScript
50 lines
1.1 KiB
JavaScript
const prompt = require('prompt');
|
|
const fs = require('fs');
|
|
|
|
const properties = [
|
|
{
|
|
description: 'Enter your Umbraco superadmin username/email',
|
|
name: 'username',
|
|
required: true
|
|
},
|
|
{
|
|
description: 'Enter your Umbraco superadmin password',
|
|
name: 'password',
|
|
hidden: true,
|
|
required: true
|
|
},
|
|
{
|
|
description: 'Enter CMS URL, or leave empty for default(https://localhost:44339)',
|
|
name: 'baseUrl'
|
|
}
|
|
];
|
|
|
|
const configPath = './.env';
|
|
|
|
console.log("Configure your Umbraco test environment");
|
|
|
|
prompt.start();
|
|
|
|
prompt.get(properties, function (error, result) {
|
|
if (error) {
|
|
return onError(error);
|
|
}
|
|
|
|
const fileContent = `UMBRACO_USER_LOGIN=${result.username}
|
|
UMBRACO_USER_PASSWORD=${result.password}
|
|
URL=${result.baseUrl || "https://localhost:44339"}
|
|
STORAGE_STAGE_PATH=${__dirname.replace(/\\/g, '/')}/playwright/.auth/user.json
|
|
CONSOLE_ERRORS_PATH=${__dirname.replace(/\\/g, '/')}/console-errors.json`;
|
|
|
|
|
|
fs.writeFile(configPath, fileContent, function (error) {
|
|
if (error) return console.error(error);
|
|
console.log('Configuration saved');
|
|
});
|
|
});
|
|
|
|
function onError(error) {
|
|
console.error(error);
|
|
return true;
|
|
}
|