SupaBase Dedicated Backend

Hello Everyone,

I am new to SupaBase and building a dedicated backend using supabase for my app and I have to make some external api calls from my backend which are not in the db. I was thinking about the folder structure of my supabase app currently I have
./src
├── functions
│   └── get-video-analysis
│       └── index.ts
├── services
│   └── youTube
│       └── video.service.ts
└── types
    └── analyzeType.ts

./supabase
├── config.toml
└── functions
    └── get-video-analysis
        └── index.ts


And I am using a script to copy the functions from src to supabase but getting many issues using it . Is there any better way to build a robust backend or should I just directly write into the supabase folder.??
Was this page helpful?