fix: refs #7229 rollback
gitea/salix/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Jorge Penadés 2024-11-25 14:15:10 +01:00
parent 9da5b4ecda
commit a68d7e8c0b
2 changed files with 5 additions and 5 deletions

View File

@ -26,7 +26,7 @@ module.exports = function(Self) {
fields: ['appName', 'url'],
where: {
appName: {inq: appNames},
environment: process.env.NODE_ENV ?? 'dev',
environment: process.env.NODE_ENV ?? 'development',
}
};

View File

@ -3011,10 +3011,10 @@ INSERT INTO `vn`.`profileType` (`id`, `name`)
INSERT INTO `salix`.`url` (`appName`, `environment`, `url`)
VALUES
('lilium', 'dev', 'http://localhost:9000/#/'),
('hedera', 'dev', 'http://localhost:9090/'),
('salix', 'dev', 'http://localhost:5000/#!/'),
('docuware', 'dev', 'http://docuware');
('lilium', 'development', 'http://localhost:9000/#/'),
('hedera', 'development', 'http://localhost:9090/'),
('salix', 'development', 'http://localhost:5000/#!/'),
('docuware', 'development', 'http://docuware');
INSERT INTO `vn`.`report` (`id`, `name`, `paperSizeFk`, `method`)
VALUES