hi! if i have the following monorepo: ``` ├── packages/ │ ├── worker/ │ └── db/ └── apps/

hi!

if i have the following monorepo:


├── packages/
│   ├── worker/  
│   └── db/ 
└── apps/   
    └── app1/
    └── app2/


where app1 and app2 are two separate workers with separate wrangler files that share the same db instance and generally share the same worker logic implemented in packages/worker. can i somehow point the local db to the same db? or are they forced to be generated in their own local .wrangler folder?
Was this page helpful?