knexfile-coffee.stub 632 B

12345678910111213141516171819202122232425262728293031323334
  1. # Update with your config settings.
  2. module.exports =
  3. development:
  4. client: 'sqlite3'
  5. connection:
  6. filename: './dev.sqlite3'
  7. migrations:
  8. tableName: 'knex_migrations'
  9. staging:
  10. client: 'postgresql'
  11. connection:
  12. database: 'my_db'
  13. user: 'username'
  14. password: 'password'
  15. pool:
  16. min: 2
  17. max: 10
  18. migrations:
  19. tableName: 'knex_migrations'
  20. production:
  21. client: 'postgresql'
  22. connection:
  23. database: 'my_db'
  24. user: 'username'
  25. password: 'password'
  26. pool:
  27. min: 2
  28. max: 10
  29. migrations:
  30. tableName: 'knex_migrations'