summaryrefslogtreecommitdiffstats
path: root/extra/deploy-demo-server.js
blob: 2cc196b39143a85c14a3e20c51050cf80d355b10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
require("dotenv").config();
const { NodeSSH } = require("node-ssh");
const readline = require("readline");
const rl = readline.createInterface({ input: process.stdin,
    output: process.stdout });
const prompt = (query) => new Promise((resolve) => rl.question(query, resolve));

(async () => {
    try {
        console.log("SSH to demo server");
        const ssh = new NodeSSH();
        await ssh.connect({
            host: process.env.UPTIME_KUMA_DEMO_HOST,
            port: process.env.UPTIME_KUMA_DEMO_PORT,
            username: process.env.UPTIME_KUMA_DEMO_USERNAME,
            privateKeyPath: process.env.UPTIME_KUMA_DEMO_PRIVATE_KEY_PATH
        });

        let cwd = process.env.UPTIME_KUMA_DEMO_CWD;
        let result;

        const version = await prompt("Enter Version: ");

        result = await ssh.execCommand("git fetch --all", {
            cwd,
        });
        console.log(result.stdout + result.stderr);

        await prompt("Press any key to continue...");

        result = await ssh.execCommand(`git checkout ${version} --force`, {
            cwd,
        });
        console.log(result.stdout + result.stderr);

        result = await ssh.execCommand("npm run download-dist", {
            cwd,
        });
        console.log(result.stdout + result.stderr);

        result = await ssh.execCommand("npm install --production", {
            cwd,
        });
        console.log(result.stdout + result.stderr);

        /*
        result = await ssh.execCommand("pm2 restart 1", {
            cwd,
        });
        console.log(result.stdout + result.stderr);*/

    } catch (e) {
        console.log(e);
    } finally {
        rl.close();
    }
})();

// When done reading prompt, exit program
rl.on("close", () => process.exit(0));