Advertisement
Guest User

Untitled

a guest
Jul 10th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. 'use strict'
  2.  
  3. import MySQL from 'mysql'
  4.  
  5. export const LOG_LEVEL = process.env['LOG_LEVEL'] || 'info'
  6. export const PORT = process.env['PORT'] || 3000
  7. export const JWT_SECRET = ''
  8. export const MYSQL_CONN = MySQL.createConnection({
  9. host: 'localhost',
  10. database: 'ciapd',
  11. charset: 'utf8mb4',
  12. user: 'dev',
  13. password: ''
  14. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement