2022-09-23 15:30:23 +03:00
|
|
|
const path = require('path');
|
2022-10-06 11:32:08 +03:00
|
|
|
const util = require('util');
|
|
|
|
const exec = util.promisify(require('child_process').exec);
|
|
|
|
|
2022-09-23 15:30:23 +03:00
|
|
|
const concurrently = require('concurrently');
|
|
|
|
|
2022-10-06 12:13:46 +03:00
|
|
|
const config = require('../ghost/core/core/shared/config/loader').loadNconf({
|
2022-10-06 11:58:51 +03:00
|
|
|
customConfigPath: path.join(__dirname, '../ghost/core')
|
|
|
|
});
|
|
|
|
|
2022-09-23 15:30:23 +03:00
|
|
|
const liveReloadBaseUrl = config.getSubdir() || '/ghost/';
|
2022-10-06 11:32:08 +03:00
|
|
|
const siteUrl = config.getSiteUrl();
|
2022-09-23 15:30:23 +03:00
|
|
|
|
|
|
|
const DASH_DASH_ARGS = process.argv.filter(a => a.startsWith('--')).map(a => a.slice(2));
|
|
|
|
|
|
|
|
let commands = [];
|
|
|
|
|
|
|
|
const COMMAND_GHOST = {
|
|
|
|
name: 'ghost',
|
2023-03-21 17:57:41 +03:00
|
|
|
// Note: if this isn't working for you, please use Node 18 and above
|
|
|
|
command: 'node --watch index.js',
|
|
|
|
cwd: path.resolve(__dirname, '../ghost/core'),
|
2022-09-23 15:30:23 +03:00
|
|
|
prefixColor: 'blue',
|
|
|
|
env: {}
|
|
|
|
};
|
|
|
|
|
|
|
|
const COMMAND_ADMIN = {
|
|
|
|
name: 'admin',
|
|
|
|
command: `yarn start --live-reload-base-url=${liveReloadBaseUrl} --live-reload-port=4201`,
|
|
|
|
cwd: path.resolve(__dirname, '../ghost/admin'),
|
|
|
|
prefixColor: 'green',
|
|
|
|
env: {}
|
|
|
|
};
|
|
|
|
|
|
|
|
if (DASH_DASH_ARGS.includes('ghost')) {
|
|
|
|
commands = [COMMAND_GHOST];
|
|
|
|
} else if (DASH_DASH_ARGS.includes('admin')) {
|
|
|
|
commands = [COMMAND_ADMIN];
|
|
|
|
} else {
|
|
|
|
commands = [COMMAND_GHOST, COMMAND_ADMIN];
|
|
|
|
}
|
|
|
|
|
2022-10-05 07:51:06 +03:00
|
|
|
if (DASH_DASH_ARGS.includes('portal')) {
|
|
|
|
commands.push({
|
|
|
|
name: 'portal',
|
|
|
|
command: 'yarn dev',
|
|
|
|
cwd: path.resolve(__dirname, '../ghost/portal'),
|
2022-10-06 11:32:08 +03:00
|
|
|
prefixColor: 'magenta',
|
|
|
|
env: {}
|
2022-10-05 07:51:06 +03:00
|
|
|
});
|
|
|
|
COMMAND_GHOST.env['portal__url'] = 'http://localhost:5368/umd/portal.min.js';
|
|
|
|
}
|
|
|
|
|
2023-03-17 13:51:42 +03:00
|
|
|
if (DASH_DASH_ARGS.includes('search')) {
|
|
|
|
commands.push({
|
|
|
|
name: 'search',
|
|
|
|
command: 'yarn dev',
|
|
|
|
cwd: path.resolve(__dirname, '../ghost/sodo-search'),
|
|
|
|
prefixColor: '#23de43',
|
|
|
|
env: {}
|
|
|
|
});
|
|
|
|
COMMAND_GHOST.env['sodoSearch__url'] = 'http://localhost:5370/umd/sodo-search.min.js';
|
|
|
|
COMMAND_GHOST.env['sodoSearch__styles'] = 'http://localhost:5370/umd/main.css';
|
|
|
|
}
|
|
|
|
|
2022-09-23 15:30:23 +03:00
|
|
|
(async () => {
|
2022-10-06 11:32:08 +03:00
|
|
|
if (DASH_DASH_ARGS.includes('stripe')) {
|
2022-10-06 12:47:54 +03:00
|
|
|
console.log('Fetching Stripe secret token..');
|
|
|
|
|
2022-10-06 11:32:08 +03:00
|
|
|
let stripeSecret;
|
|
|
|
try {
|
|
|
|
stripeSecret = await exec('stripe listen --print-secret');
|
|
|
|
} catch (err) {
|
|
|
|
console.error('Failed to fetch Stripe secret token, do you need to connect Stripe CLI?', err);
|
2022-10-06 11:42:19 +03:00
|
|
|
return;
|
2022-10-06 11:32:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!stripeSecret || !stripeSecret.stdout) {
|
|
|
|
console.error('No Stripe secret was present');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
COMMAND_GHOST.env['WEBHOOK_SECRET'] = stripeSecret.stdout.trim();
|
|
|
|
commands.push({
|
|
|
|
name: 'stripe',
|
|
|
|
command: `stripe listen --forward-to ${siteUrl}members/webhooks/stripe/`,
|
|
|
|
prefixColor: 'yellow',
|
|
|
|
env: {}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!commands.length) {
|
|
|
|
console.log(`No commands provided`);
|
|
|
|
process.exit(0);
|
|
|
|
}
|
|
|
|
|
2022-09-23 15:30:23 +03:00
|
|
|
const {result} = concurrently(commands, {
|
|
|
|
prefix: 'name',
|
|
|
|
killOthers: ['failure', 'success']
|
|
|
|
});
|
|
|
|
|
|
|
|
try {
|
|
|
|
await result;
|
|
|
|
} catch (err) {
|
2022-12-12 13:22:21 +03:00
|
|
|
console.error('\nExecuting dev command failed, ensure dependencies are up-to-date by running `yarn fix`\n');
|
2022-09-23 15:30:23 +03:00
|
|
|
}
|
|
|
|
})();
|