Advertisement
Guest User

Untitled

a guest
Sep 17th, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. module.exports = {
  2. port: 1337,
  3. environment: 'development',
  4. connections: {
  5. mysql: {
  6. adapter: 'sails-mysql',
  7. host: 'localhost',
  8. user: 'root',
  9. password: '',
  10. database: 'mrreply',
  11. charset: 'utf8',
  12. collation: 'utf8_general_ci'
  13. }
  14. },
  15. models: {
  16. connection: 'mysql'
  17. },
  18. log: {
  19. level: 'info',
  20. filePath: 'application.log'
  21. }
  22. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement