-
Notifications
You must be signed in to change notification settings - Fork 0
/
deploy.js
34 lines (31 loc) · 937 Bytes
/
deploy.js
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
var FtpDeploy = require("ftp-deploy");
var ftpDeploy = new FtpDeploy();
require("dotenv").config();
var config = {
user: "dev",
// Password optional, prompted if none given
password: process.env.FTP_PASSWORD,
host: "greeninc.ga",
port: 21,
localRoot: __dirname + "/public/",
remoteRoot: "coronatracker/",
// include: ["*", "**/*"], // this would upload everything except dot files
include: ["*", "**/*"],
// e.g. exclude sourcemaps, and ALL files in node_modules (including dot files)
exclude: [
"dist/**/*.map",
"node_modules/**",
"node_modules/**/.*",
".git/**",
],
// delete ALL existing files at destination before uploading, if true
deleteRemote: false,
// Passive mode is forced (EPSV command is not sent)
forcePasv: true,
// use sftp or ftp
sftp: false,
};
ftpDeploy
.deploy(config)
.then((res) => console.log("finished:", res))
.catch((err) => console.log(err));