mirror of
https://github.com/filecoin-project/slate.git
synced 2024-11-23 05:54:49 +03:00
8 lines
162 B
JavaScript
8 lines
162 B
JavaScript
import configs from "~/knexfile";
|
|
import knex from "knex";
|
|
|
|
const envConfig = configs["development"];
|
|
const Database = knex(envConfig);
|
|
|
|
export default Database;
|