supabase-plus 0.5.0-beta

An extra set of tools for managing Supabase projects going beyond the possibilities of regular Supabase CLI
1
2
3
4
5
6
7
8
9
10
use super::prelude::*;

#[async_trait]
impl CliSubcommand for Upgrade {
    async fn run(self: Box<Self>) {
        cmd!("cargo install supabase-plus")
            .run()
            .expect("Something went wrong running cargo install");
    }
}