bular 0.0.2

CLI for managing Bular deployments
// TODO: Do we really want this? It's very vendor lockin vibe.

#[derive(clap::Args)]
#[command(about = "TODO")]
pub struct Command {}

impl Command {
    pub async fn run(&self) {
        // let config = Config::load().await;
        // let config: Config = serde_yaml::from_str(s)

        // TODO: Loading `.env`, etc.

        // TODO: Allow running Lambda functions

        // TODO: Redirect rules, static files, etc

        todo!();
    }
}