mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-10 07:48:37 +01:00
90 lines
3.0 KiB
TypeScript
90 lines
3.0 KiB
TypeScript
|
|
import fs from 'fs-extra';
|
|
import path from 'path';
|
|
import child from 'child_process';
|
|
import { createZip } from '../helpers/zip-helper';
|
|
import { DeployHelper } from '../helpers/deploy-helper';
|
|
import { getEcosystemContent } from '../.config';
|
|
import prettier from 'prettier';
|
|
|
|
const TMP_PATH = path.join(__dirname, '../../tmp');
|
|
const LOCAL_PATH = path.join(__dirname, '../../dashboard');
|
|
const REMOTE_PATH = '/home/litlyx/dashboard';
|
|
const ZIP_NAME = 'dashboard.zip';
|
|
|
|
const MODE = DeployHelper.getMode();
|
|
const SKIP_BUILD = DeployHelper.getArgAt(0) == '--no-build';
|
|
|
|
console.log('Deploying dashboard in mode:', MODE);
|
|
|
|
setTimeout(() => { main(); }, 3000);
|
|
|
|
async function main() {
|
|
|
|
if (fs.existsSync(TMP_PATH)) fs.rmSync(TMP_PATH, { force: true, recursive: true });
|
|
fs.ensureDirSync(TMP_PATH);
|
|
|
|
|
|
|
|
if (!SKIP_BUILD) {
|
|
console.log(`[${new Date().toLocaleTimeString('it-IT')}] Building`);
|
|
child.execSync(`cd ${LOCAL_PATH} && pnpm run build`);
|
|
|
|
if (MODE === 'testmode') {
|
|
child.execSync(`cd ${LOCAL_PATH} && pnpm run build:test`);
|
|
} else if (MODE === 'testlive') {
|
|
child.execSync(`cd ${LOCAL_PATH} && pnpm run build:testlive`);
|
|
} else if (MODE === 'production') {
|
|
child.execSync(`cd ${LOCAL_PATH} && pnpm run build:prod`);
|
|
}
|
|
|
|
}
|
|
|
|
fs.rmSync(path.join(LOCAL_PATH, '.env'), { force: true });
|
|
|
|
console.log('Creating zip file');
|
|
const archive = createZip(TMP_PATH + '/' + ZIP_NAME);
|
|
archive.directory(LOCAL_PATH + '/.output', '/.output');
|
|
|
|
const ecosystemContentRaw = getEcosystemContent('dashboard', 3010, 'cluster', 1, './.output/server/index.mjs', {});
|
|
const ecosystemContent = await prettier.format(ecosystemContentRaw, { parser: 'babel' });
|
|
archive.append(Buffer.from(ecosystemContent), { name: '/ecosystem.config.js' });
|
|
|
|
await archive.finalize();
|
|
|
|
await DeployHelper.connect();
|
|
|
|
const { scp, ssh } = DeployHelper.instances();
|
|
|
|
console.log('Creating remote structure');
|
|
console.log('Check existing');
|
|
const remoteExist = await scp.exists(REMOTE_PATH);
|
|
console.log('Exist', remoteExist);
|
|
if (remoteExist) {
|
|
console.log('Deleting');
|
|
await DeployHelper.execute(`rm -r ${REMOTE_PATH}`);
|
|
}
|
|
|
|
console.log('Creating folder');
|
|
await scp.mkdir(REMOTE_PATH);
|
|
|
|
console.log('Uploading zip file');
|
|
await scp.uploadFile(TMP_PATH + '/' + ZIP_NAME, REMOTE_PATH + '/' + ZIP_NAME);
|
|
scp.close();
|
|
|
|
console.log('Cleaning local');
|
|
fs.rmSync(TMP_PATH + '/' + ZIP_NAME, { force: true, recursive: true });
|
|
|
|
console.log('Extracting remote');
|
|
await DeployHelper.execute(`cd ${REMOTE_PATH} && unzip ${ZIP_NAME} && rm -r ${ZIP_NAME}`);
|
|
|
|
console.log('Installing remote');
|
|
await DeployHelper.execute(`cd ${REMOTE_PATH}/.output/server && /root/.nvm/versions/node/v21.2.0/bin/pnpm i`);
|
|
|
|
console.log('Executing remote');
|
|
await DeployHelper.execute(`cd ${REMOTE_PATH} && /root/.nvm/versions/node/v21.2.0/bin/pm2 start ecosystem.config.js`);
|
|
|
|
ssh.dispose();
|
|
|
|
}
|