Advertisement
Guest User

Untitled

a guest
Sep 11th, 2017
457
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. const config = {
  2. app: {
  3. name: 'Gimlet',
  4. security: {
  5. tokens: {
  6. jwt: {
  7. key: 'josh'
  8. }
  9. },
  10. password: {
  11. hashRounds: 10
  12. },
  13. user: {
  14. allowedIP: 3
  15. },
  16. email: {
  17. verification: {
  18. verify: false,
  19. email: 'email@here.com',
  20. password: 'password'
  21. }
  22. }
  23. }
  24. },
  25. db: {
  26. mongo: {
  27. connectString: 'mongodb://localhost/josh'
  28. }
  29. },
  30. server: {
  31. settings: {
  32. port: 4050 //If you change this, make sure to change the port for sync on www
  33. }
  34. }
  35. }
  36.  
  37. module.exports = config;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement