mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-21 17:12:43 +00:00
feat: copy connector
This commit is contained in:
15
turbowatch.ts
Normal file
15
turbowatch.ts
Normal 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`;
|
||||
},
|
||||
},
|
||||
],
|
||||
});
|
||||
Reference in New Issue
Block a user