knexfile.js 316 B

12345678910111213141516171819202122
  1. module.exports = {
  2. development: {
  3. client: "sqlite3",
  4. connection: {
  5. filename: "./data.db",
  6. },
  7. },
  8. staging: {
  9. client: "sqlite3",
  10. connection: {
  11. filename: "./data.db",
  12. },
  13. },
  14. production: {
  15. client: "sqlite3",
  16. connection: {
  17. filename: "./data.db",
  18. },
  19. },
  20. };