mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
modify api doc url and correct puppeteer flags
This commit is contained in:
@@ -11,8 +11,8 @@ user.message = 'Test message'
|
||||
const puppeteerLaunchConfig = {
|
||||
headless: true,
|
||||
args: [
|
||||
'no-sandbox',
|
||||
'disable-setuid-sandbox',
|
||||
'--no-sandbox',
|
||||
'--disable-setuid-sandbox',
|
||||
]
|
||||
}
|
||||
|
||||
@@ -20,8 +20,8 @@ const HOME_URL = process.env.HOME_URL ? 'http://home:1444' : 'http://localhost:
|
||||
const ACCOUNTS_URL = process.env.ACCOUNTS_URL ? 'http://accounts:3003' : 'http://localhost:3003';
|
||||
const DASHBOARD_URL = process.env.DASHBOARD_URL ? 'http://dashboard:3000' : 'http://localhost:3000';
|
||||
const BACKEND_URL = process.env.BACKEND_URL ? 'http://backend:3002' : 'http://localhost:3002';
|
||||
const STATUSPAGE_URL = process.env.STATUSPAGE_URL ? 'http://statuspage:3006' : 'http://localhost:3006';
|
||||
const APIDOCS_URL = process.env.APIDOCS_URL || 'http://localhost:1445';
|
||||
const STATUSPAGE_URL = process.env.STATUSPAGE_URL ? 'http://status-page:3006' : 'http://localhost:3006';
|
||||
const APIDOCS_URL = process.env.APIDOCS_URL ? 'http://api-docs:1445' : 'http://localhost:1445';
|
||||
|
||||
|
||||
function generateRandomBusinessEmail() {
|
||||
|
||||
Reference in New Issue
Block a user