尝试将我的API部署到heroku时遇到此问题

时间:2020-03-28 04:53:21

标签: node.js postgresql heroku knex.js

我已经从Heroku安装了PostgreSQL附加组件,但是我在后端使用了Knex.js,就像以前在SQLite中使用的那样,并且出现以下错误。

我正在为网站和移动应用程序构建后端,并尝试将其部署到Heroku,而在开发过程中,我使用SQLite,但是我发现由于使用Knex.js,我可以轻松地转移到Postgres附加组件来自Heroku。在knex migrate:latest上运行postbuild时,我遇到了这个问题。

no such file or directory, scandir '/tmp/build_46fb7aa66e7e3cea06d2f04a21ad9249/migrations'

这是我的knex文件:

// Update with your config settings.

module.exports = {

  development: {
    client: 'sqlite3',
    connection: {
      filename: './src/database/db.sqlite'
    },
    migrations: {
      directory: './src/database/migrations'
    },
    useNullAsDefault: true
  },


  test: {
    client: 'sqlite3',
    connection: {
      filename: './src/database/test.sqlite'
    },
    migrations: {
      directory: './src/database/migrations'
    },
    useNullAsDefault: true
  },

  staging: {
    client: 'postgresql',
    connection: {
      database: 'my_db',
      user:     'username',
      password: 'password'
    },
    pool: {
      min: 2,
      max: 10
    },
    migrations: {
      tableName: 'knex_migrations'
    }
  },

  production: {
    client: 'pg',
    debug: true,
    connection: process.env.DATABASE_URL,
    pool: {
      min: 2,
      max: 10
    },
    migrations: {
      tableName: 'knex_migrations'
    },
    ssl: true
  }

};

和我的联系

const knex = require('knex')
const configuration = require('../../knexfile')

const config = process.env.NODE_ENV


const connection = knex(configuration[config])


module.exports = connection

用于测试和开发的迁移工作正常

此后我也不知道这是否行得通,所以如果有人有经验,我可以寻求帮助

1 个答案:

答案 0 :(得分:0)

Heroku似乎找不到您的迁移。

您的生产配置似乎不包含迁移目录。尝试添加它,例如

  production: {
    client: 'pg',
    debug: true,
    connection: process.env.DATABASE_URL,
    pool: {
      min: 2,
      max: 10
    },
    migrations: {
      tableName: 'knex_migrations',
      directory: './src/database/migrations'  // <-- here
    },
    ssl: true
  }

在开发过程中,我使用SQLite,但发现由于使用了Knex.js,我可以轻松地从Heroku转移到Postgres插件

我敦促您在开发和生产中使用相同的数据库。即使您使用的是Knex之类的东西,数据库引擎也不是彼此的直接替代品。