1
This commit is contained in:
@@ -57,7 +57,8 @@ export function get_app_config() {
|
||||
puppeteer_headless: get_bool('PUPPETEER_HEADLESS', false),
|
||||
chrome_executable_path: (get_env('CHROME_EXECUTABLE_PATH') || '').trim() || path.resolve(__dirname, '../../chrome-win/chrome.exe'),
|
||||
log_invoke_action: get_bool('LOG_INVOKE_ACTION', true),
|
||||
auto_close_browser: get_bool('AUTO_CLOSE_BROWSER', true)
|
||||
auto_close_browser: get_bool('AUTO_CLOSE_BROWSER', true),
|
||||
enable_stealth: get_bool('ENABLE_STEALTH', true)
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
@@ -2,7 +2,6 @@ import { get_app_config } from './app_config.js';
|
||||
|
||||
export function get_sequelize_options() {
|
||||
const cfg = get_app_config();
|
||||
console.log( 'get_sequelize_options', cfg.mysql );
|
||||
|
||||
return {
|
||||
host: cfg.mysql.host,
|
||||
|
||||
Reference in New Issue
Block a user