-
Notifications
You must be signed in to change notification settings - Fork 0
/
knexfile.js
50 lines (44 loc) · 933 Bytes
/
knexfile.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
40
41
42
43
44
45
46
47
48
49
50
/**
* Created by alex.hans on 05.05.2017.
*/
module.exports = {
local: {
client: 'mysql',
connection: {
host: 'localhost',
user: 'root',
password: '',
database: 'masterprojektgeschwindigkeitsdaten',
charset: 'utf8'
},
migrations: {
tableName: 'knex_migrations'
}
},
development: {
client: 'mysql',
connection: {
host: 'db.hosting-agency.de',
user: 'dbuser30796',
password: process.env.db_password,
database: 'db6107x1',
charset: 'utf8'
},
migrations: {
tableName: 'knex_migrations'
}
},
production: {
client: 'mysql',
connection: {
host: 'us-cdbr-iron-east-03.cleardb.net',
user: 'bb41eedfd379a8',
password: process.env.clearDB_password,
database: 'heroku_9b6f95eb7a9adf8',
charset: 'utf8'
},
migrations: {
tableName: 'knex_migrations'
}
}
};