sonarqube/server/sonar-web/config/paths.js

29 lines
1.1 KiB
JavaScript
Raw Normal View History

2016-04-05 14:16:55 +02:00
/*
* SonarQube
2020-01-06 15:01:53 +01:00
* Copyright (C) 2009-2020 SonarSource SA
* mailto:info AT sonarsource DOT com
2016-04-05 14:16:55 +02:00
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
2017-06-14 11:10:48 +02:00
const path = require('path');
2016-04-05 14:16:55 +02:00
2016-08-22 15:29:35 +02:00
module.exports = {
2018-03-22 11:48:45 +01:00
appBuild: path.join(__dirname, '../build/webapp'),
appPublic: path.join(__dirname, '../public'),
appHtml: path.join(__dirname, '../public/index.html'),
docRoot: path.join(__dirname, '../../sonar-docs/src'),
docImages: path.join(__dirname, '../../sonar-docs/src/images')
2016-08-22 15:29:35 +02:00
};