19 lines
424 B
Plaintext
19 lines
424 B
Plaintext
|
'use strict'
|
||
|
|
||
|
var mysql = require('mysql');
|
||
|
|
||
|
module.exports = {
|
||
|
name: 'TS-api3',
|
||
|
hostname : 'http://localhost',
|
||
|
version: '3.0.1',
|
||
|
env: process.env.NODE_ENV || 'development',
|
||
|
port: process.env.PORT || 3000,
|
||
|
db: {
|
||
|
get : mysql.createConnection({
|
||
|
host : 'ip or host name here',
|
||
|
user : 'yOuR_UsEr',
|
||
|
password : 'S0mePa$$w0rd',
|
||
|
database : 'YourDBs'
|
||
|
})
|
||
|
}
|
||
|
}
|