mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-09 19:22:51 +00:00
16 lines
361 B
TypeScript
16 lines
361 B
TypeScript
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`;
|
|
},
|
|
},
|
|
],
|
|
});
|