tsapi3/config.js.dist

19 lines
424 B
Plaintext
Raw Normal View History

2024-11-25 12:51:41 -05:00
'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'
})
}
}