mirror of
https://github.com/knex/knex.git
synced 2025-11-13 08:34:13 +00:00
10 lines
177 B
JavaScript
10 lines
177 B
JavaScript
|
|
module.exports = async () => ({
|
||
|
|
client: 'sqlite3',
|
||
|
|
connection: {
|
||
|
|
filename: __dirname + '/../test.sqlite3',
|
||
|
|
},
|
||
|
|
seeds: {
|
||
|
|
directory: __dirname + '/seeds',
|
||
|
|
},
|
||
|
|
});
|