config: add dockerfile (#214)
* config: add dockerfile * feat: add working dockerfile for nest and next app with sqlite migration --------- Co-authored-by: Meier Lukas <meierschlumpf@gmail.com>
This commit is contained in:
34
turbo.json
34
turbo.json
@@ -1,12 +1,18 @@
|
||||
{
|
||||
"$schema": "https://turborepo.org/schema.json",
|
||||
"globalDependencies": ["**/.env"],
|
||||
"globalDependencies": [
|
||||
"**/.env"
|
||||
],
|
||||
"pipeline": {
|
||||
"topo": {
|
||||
"dependsOn": ["^topo"]
|
||||
"dependsOn": [
|
||||
"^topo"
|
||||
]
|
||||
},
|
||||
"build": {
|
||||
"dependsOn": ["^build"],
|
||||
"dependsOn": [
|
||||
"^build"
|
||||
],
|
||||
"outputs": [
|
||||
".next/**",
|
||||
"!.next/cache/**",
|
||||
@@ -20,16 +26,26 @@
|
||||
"cache": false
|
||||
},
|
||||
"format": {
|
||||
"outputs": ["node_modules/.cache/.prettiercache"],
|
||||
"outputs": [
|
||||
"node_modules/.cache/.prettiercache"
|
||||
],
|
||||
"outputMode": "new-only"
|
||||
},
|
||||
"lint": {
|
||||
"dependsOn": ["^topo"],
|
||||
"outputs": ["node_modules/.cache/.eslintcache"]
|
||||
"dependsOn": [
|
||||
"^topo"
|
||||
],
|
||||
"outputs": [
|
||||
"node_modules/.cache/.eslintcache"
|
||||
]
|
||||
},
|
||||
"typecheck": {
|
||||
"dependsOn": ["^topo"],
|
||||
"outputs": ["node_modules/.cache/tsbuildinfo.json"]
|
||||
"dependsOn": [
|
||||
"^topo"
|
||||
],
|
||||
"outputs": [
|
||||
"node_modules/.cache/tsbuildinfo.json"
|
||||
]
|
||||
},
|
||||
"clean": {
|
||||
"cache": false
|
||||
@@ -46,4 +62,4 @@
|
||||
"AUTH_SECRET",
|
||||
"AUTH_URL"
|
||||
]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user