Advertisement
Guest User

Untitled

a guest
Dec 19th, 2016
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. /** @flow */
  2. export default {
  3. port: process.env.PORT || 3000,
  4. debug: true,
  5. jwt: {
  6. secret: 'arklign-private'
  7. },
  8. memcached: {
  9. locations: [
  10. 'localhost:11212'
  11. ],
  12. options: {
  13. lifetime: 5,
  14. maxValue: 67108864
  15. },
  16. },
  17. db: {
  18. host: 'localhost',
  19. user: 'root',
  20. password: '1',
  21. database: 'peenk',
  22. debug: false
  23. },
  24. socket: 'http://localhost:4000'
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement