dart_edge
dart_edge copied to clipboard
edge.yaml config ideas
By default no config is required when developing and deploying, however providing such a file would allow the CLI to hook onto various options:
- [ ] Support multiple entry points. For example,
lib/admin.dartcould deploy as it's own standalone function. Currently, only a single entrypoint is supported.
I think we can provide different entry points by configuring edge.yml file
supabase:
functions:
task1: 'lib/task1.dart'
task2: 'lib/task2.dart'
projectPath: "supabase"