1
0
mirror of https://git.ngram.ca/OpenJam/rc-servers synced 2026-08-23 23:08:52 +00:00

Add some build tooling

This commit is contained in:
NG (Graham)
2025-06-05 21:20:53 -04:00
parent c0d04f0553
commit 78c1ad2ee5
16 changed files with 101 additions and 34 deletions

View File

@@ -1,3 +0,0 @@
#!/bin/bash
cargo build --release --target aarch64-unknown-linux-musl

View File

@@ -11,7 +11,7 @@ async fn index() -> impl Responder {
let authors = env!("CARGO_PKG_AUTHORS");
let license = env!("CARGO_PKG_LICENSE");
let repo = env!("CARGO_PKG_REPOSITORY");
format!("{} {}{} by [{}]\n{}\n{}", name, version, git_version, authors, license, repo)
format!("{} {}:{} by [{}]\n{}\n{}", name, version, git_version, authors, license, repo)
}
#[actix_web::main]