feat: copy connector

This commit is contained in:
2023-11-07 12:48:21 +01:00
parent 62d5ea4275
commit 780916eb35
35 changed files with 1121 additions and 119 deletions

15
turbowatch.ts Normal file
View File

@@ -0,0 +1,15 @@
import {defineConfig} from 'turbowatch';
export default defineConfig({
project: __dirname,
triggers: [
{
expression: ['anyof', ['not', ['dirname', 'node_modules']]],
interruptible: true,
name: 'backend',
onChange: async ({spawn}) => {
await spawn`dotenv -c -- turbo run start --filter=backend`;
},
},
],
});