UNPKG
lean4-code-actions
Version:
latest (1.1.32)
1.1.32
Refactorings and snippets for Lean 4
lean4-code-actions
/
libs
/
utils
/
knex.js
11 lines
(9 loc)
•
225 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
knex_module
from
'knex'
import
{ isDev }
from
'./env.constants.js'
export
function
createKnex
(
) {
return
knex_module
({
client
:
'pg'
,
connection
: process.
env
.
DATABASE_URL
,
asyncStackTraces
: isDev, }) }