migrated backend structure to Axum API setup, added core modules (models, services, api), integrated dotenv for configuration management, and added project roadmap for future phases

This commit is contained in:
2025-08-05 08:02:07 +02:00
parent bc1735448a
commit 37ebf45d82
15 changed files with 187 additions and 0 deletions

View File

@@ -10,3 +10,4 @@ axum = "0.8.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sqlx = { version = "0.8", features = ["runtime-tokio", "tls-native-tls", "sqlite", "macros", "migrate", "chrono", "json"] }
dotenv = "0.15"