82e058f2b8
Co-authored-by: Fedor Indutnyy <indutny@signal.org>
10 lines
266 B
JavaScript
10 lines
266 B
JavaScript
// Copyright 2022 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
const CI_CONFIG = JSON.parse(process.env.SIGNAL_CI_CONFIG || '');
|
|
|
|
const config = require('./app/config').default;
|
|
|
|
config.util.extendDeep(config, CI_CONFIG);
|
|
|
|
require('./app/main');
|