Added backend

This commit is contained in:
Patrick Alvin Alcala 2025-09-03 16:42:38 +08:00
parent 0be02352a0
commit 513f437ee6
3429 changed files with 39630 additions and 0 deletions

12
backend/Cargo.toml Normal file
View file

@ -0,0 +1,12 @@
[package]
name = "backend"
version = "0.1.0"
edition = "2024"
[dependencies]
actix-cors = "0.7.1"
actix-web = "4.11.0"
dotenvy = "0.15.7"
mysql = "26.0.1"
serde = { version = "1.0.219", features = ["derive"] }
sqlx = { version = "0.8.6", features = ["mysql", "macros", "runtime-tokio-rustls"] }