mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-18 22:51:40 +03:00
20 lines
355 B
Plaintext
20 lines
355 B
Plaintext
{{={= =}=}}
|
|
|
|
datasource db {
|
|
provider = "sqlite"
|
|
url = "file:./dev.db"
|
|
}
|
|
|
|
generator client {
|
|
provider = "prisma-client-js"
|
|
{=! TODO(matija): this shouldn't be hardcoded, generator should provide this path. =}
|
|
output = "../server/node_modules/.prisma/client"
|
|
}
|
|
|
|
{=# entities =}
|
|
model {= name =} {
|
|
{= pslModelSchema =}
|
|
}
|
|
|
|
{=/ entities =}
|