UNPKG
vibe-init
Version:
latest (2.0.1)
2.0.1
2.0.0
1.3.1
1.3.0
1.2.0
1.1.0
1.0.0
Create a new project with good vibes ✨ - A modern full-stack monorepo template
vibe-init
/
templates
/
turbo-react-router
/
apps
/
web
/
lib
/
db
/
index.ts
5 lines
(3 loc)
•
156 B
text/typescript
View Raw
1
2
3
4
5
import
{ drizzle }
from
"drizzle-orm/node-postgres"
;
import
*
as
schema
from
"./schema"
;
export
const
db =
drizzle
(process.
env
.
DATABASE_URL
!, { schema });