mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-05-11 04:50:59 +00:00
28 lines
589 B
JSON
28 lines
589 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalDependencies": ["**/.env.*local"],
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": [".next/**", "!.next/cache/**"]
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["^lint"]
|
|
},
|
|
"deploy": {},
|
|
"dev": {
|
|
"env": [
|
|
"NODE_ENV=development",
|
|
"GOOGLE_CLIENT_ID",
|
|
"GOOGLE_CLIENT_SECRET",
|
|
"NEXTAUTH_SECRET",
|
|
"R2_ENDPOINT",
|
|
"R2_ACCESS_ID",
|
|
"R2_SECRET_KEY",
|
|
"R2_BUCKET_NAME"
|
|
],
|
|
"cache": false,
|
|
"persistent": true
|
|
}
|
|
}
|
|
}
|