-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconfig.js
More file actions
135 lines (127 loc) · 3.3 KB
/
config.js
File metadata and controls
135 lines (127 loc) · 3.3 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
// # Ghost Configuration
// Setup your Ghost install for various environments
var path = require('path');
var config;
var setting = require('./setting.js');
config = {
// ### Development **(default)**
development: {
// The url to use when providing links to the site, E.g. in RSS and email.
url: 'http://my-ghost-blog.com',
mail: {
transport: 'SMTP',
options: {
service: 'Gmail',
auth: {
user: process.env.GMAIL_USERNAME,
pass: process.env.GMAIL_PASSWORD
}
}
},
database: {
user: "shanshan",
password: "",
host: "",
dbname: "datsy"
},
datastore: {
user: "shanshan",
password: "",
host: "",
dbname: "datastore"
},
server: {
// Host to be passed to node's `net.Server#listen()`
host: '127.0.0.1',
// Port to be passed to node's `net.Server#listen()`, for iisnode set this to `process.env.PORT`
port: '2368'
}
},
// ### Production
// When running Ghost in the wild, use the production environment
// Configure your URL and mail settings here
production: {
url: process.env.MY_URL,
mail: {
transport: 'SMTP',
options: {
service: 'Gmail',
auth: {
user: process.env.GMAIL_USERNAME,
pass: process.env.GMAIL_PASSWORD
}
}
},
database: {
user: "masterofdata",
password: "gj1h23gnbfsjdhfg234234kjhskdfjhsdfKJHsdf234",
host: "137.135.14.92",
dbname: "datsydata"
},
datastore: {
user: "masterofdata",
password: "gj1h23gnbfsjdhfg234234kjhskdfjhsdfKJHsdf234",
host: "137.135.14.92",
dbname: "postgres"
},
server: {
// Host to be passed to node's `net.Server#listen()`
host: '0.0.0.0',
// Port to be passed to node's `net.Server#listen()`, for iisnode set this to `process.env.PORT`
port: process.env.PORT || 5000
}
},
// **Developers only need to edit below here**
// ### Testing
// Used when developing Ghost to run tests and check the health of Ghost
// Uses a different port number
testing: {
url: 'http://127.0.0.1:2369',
database: {
client: 'mysql',
connection: {
user: process.env.MYSQL_USER,
password: process.env.MYSQL_PASSWORD,
host: process.env.MYSQL_HOST,
database: process.env.MYSQL_DATABASE,
filename: path.join(__dirname, '/content/data/ghost-test.db')
}
},
server: {
host: '127.0.0.1',
port: '2369'
}
},
// ### Travis
// Automated testing run through Github
travis: {
url: 'http://127.0.0.1:2368',
database: {
client: 'mysql',
connection: {
user: process.env.MYSQL_USER,
password: process.env.MYSQL_PASSWORD,
host: process.env.MYSQL_HOST,
database: process.env.MYSQL_DATABASE,
filename: path.join(__dirname, '/content/data/ghost-travis.db')
}
},
server: {
host: '127.0.0.1',
port: '2368'
}
},
allEnv: {
mailer: {
auth: {
//user: process.env.GMAIL_USERNAME,
//pass: process.env.GMAIL_PASSWORD
user: setting.email_user,
pass: setting.email_pass
},
defaultFromAddress: 'Datsy <datsydev@gmail.com>'
}
}
};
// Export config
module.exports = config;