Add include option for supabase start
#14757
Unanswered
isaacharrisholt
asked this question in
Feature Requests
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Currently, there's an option to exclude containers from
supabase start. This is very useful for CI, as if you just need to run pgTAP tests against the database, you can use the Supabase CLI in CI to set up the container.However, when new container types are added, they need to also be excluded. This has caused CI to break for us as newer containers were dependent on older containers which were being excluded.
I'd like to see a
-ior--includeoption forsupabase startwhich does the opposite of the-xflag and allows you to only start the specified containers. Of course, the two flags would have to be mutually exclusive. This makes use ofsupabase startmore resilient to the issues caused by updates that I mentioned earlier.In my head, you might have something like the following:
All reactions