feat: init

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2024-09-12 19:15:42 +02:00
commit 23a71ff95b
11 changed files with 2344 additions and 0 deletions

1
crates/gitnow/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
/target

19
crates/gitnow/Cargo.toml Normal file
View File

@@ -0,0 +1,19 @@
[package]
name = "gitnow"
edition = "2021"
version.workspace = true
[dependencies]
anyhow.workspace = true
tokio.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
clap.workspace = true
dotenv.workspace = true
axum.workspace = true
serde = { version = "1.0.197", features = ["derive"] }
sqlx = { version = "0.7.3", features = ["runtime-tokio", "tls-rustls", "postgres", "uuid", "time"] }
uuid = { version = "1.7.0", features = ["v4"] }
tower-http = { version = "0.5.2", features = ["cors", "trace"] }

29
crates/gitnow/src/main.rs Normal file
View File

@@ -0,0 +1,29 @@
use anyhow::Context;
use clap::{Parser, Subcommand};
#[derive(Parser)]
#[command(author, version, about, long_about = None, subcommand_required = true)]
struct Command {
#[command(subcommand)]
command: Option<Commands>,
}
#[derive(Subcommand)]
enum Commands {
Hello {},
}
#[tokio::main]
async fn main() -> anyhow::Result<()> {
dotenv::dotenv().ok();
tracing_subscriber::fmt::init();
let cli = Command::parse();
tracing::debug!("Starting cli");
if let Some(Commands::Hello {}) = cli.command {
println!("Hello!")
}
Ok(())
}