aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/with-docker/turbo.json
diff options
context:
space:
mode:
Diffstat (limited to 'examples/with-docker/turbo.json')
-rw-r--r--examples/with-docker/turbo.json26
1 files changed, 26 insertions, 0 deletions
diff --git a/examples/with-docker/turbo.json b/examples/with-docker/turbo.json
new file mode 100644
index 0000000..7a59fef
--- /dev/null
+++ b/examples/with-docker/turbo.json
@@ -0,0 +1,26 @@
+{
+ "$schema": "https://turbo.build/schema.json",
+ "globalDependencies": ["**/.env.*local"],
+ "globalEnv": ["PORT"],
+ "pipeline": {
+ "build": {
+ "outputs": ["dist/**", ".next/**", "!.next/cache/**", "public/dist/**"],
+ "dependsOn": ["^build"],
+ "env": ["NEXT_PUBLIC_API_HOST"]
+ },
+ "test": {
+ "outputs": ["coverage/**"],
+ "dependsOn": []
+ },
+ "lint": {
+ "dependsOn": ["^build"]
+ },
+ "dev": {
+ "cache": false,
+ "persistent": true
+ },
+ "clean": {
+ "cache": false
+ }
+ }
+}