したがって、次の 2 つのエラーが表示されます:
error: A hook ( orm
) failed to load!
エラー: エラー: ユーザー「root」のパスワード認証に失敗しました
これは私の connections.js ファイルです:
module.exports.connections = {
PostgresqlServer: {
adapter: 'sails-postgresql',
host: 'localhost',
//user: 'Testeur1', // optional
//password: 'eniso2020', // optional
//database: 'PatientsDB' //optional
}
};
これは、models フォルダー内の Patients.js ファイルです。
module.exports = {
attributes: {
},
connection:'PostgresqlServer'
};
セイル v 0.12.14
この問題の原因は何ですか?
ありがとう