-
Notifications
You must be signed in to change notification settings - Fork 30
/
default_config.js
39 lines (38 loc) · 962 Bytes
/
default_config.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
35
36
37
38
39
var path = require("path");
module.exports = {
gitlab: {
/**
Example `url`: "http://gitlab.cs.smu.ca"
*/
url: null
},
deploy: {
/**
SSH Public Key for Project Deploy Key
*/
sshPublicKey: path.resolve("./keys/id_rsa.pub"),
/**
SSH Private Key for Project Deploy Key
*/
sshPrivateKey: path.resolve("./keys/id_rsa"),
/**
Specific branch that will be deployed when pushed
*/
deployBranch: "gl-pages",
/**
Final, public directory of GitLab Pages.
Jekyll builds will go here, or other static files.
*/
publicPagesDir: path.resolve('./pages'),
/**
Repositories are cloned here.
*/
tmpPagesDir: path.resolve('./.tmp')
},
server: {
/**
Example `publicUrl`: "http://glavin001.ddns.net:8081"
*/
publicUrl: null
}
};