Advertisement
Guest User

Untitled

a guest
Nov 25th, 2015
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. /**
  2. * Server configuration file.
  3. */
  4.  
  5. module.exports = {
  6.  
  7. serverConfig: {
  8. port: 8082,
  9. secret_app_key: 'BkL1nO4P56w9ag247U69yE6zqj1S9Zzp',
  10. secret_server_key: 'x90lJti7q9MUJ786glRfhi3GbPfp2wOP'
  11. },
  12.  
  13. databaseConfig: {
  14. host: 'development-db-mysql',
  15. user: 'status',
  16. password: 'eqWbAkU5ryBRd7Mb',
  17. database: 'status',
  18. port: 3306
  19. },
  20.  
  21. emailConfig: {
  22. mandrill_api_key: 'EcQh2y4PhNVa_LZujtseGg',
  23. subject: 'An error occurred',
  24. body: 'Please check the logs.'
  25. }
  26.  
  27. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement