
Major architecture cleanup following CLAUDE.md rules: ## Admin Panel Conversion (1843 lines → TypeScript routes) - Remove public/admin/scripts/main.js (direct API calls violation) - Add proper Astro admin routes with TypeScript API endpoints - Add missing admin functions in church-core Rust crate - Update bindings.js to expose new admin functions ## Thumbnail Field Removal - Remove thumbnail upload section from event submission form - Clean up thumbnail-related JavaScript code ## Architecture Compliance Achieved ✅ Frontend → bindings.js → Rust FFI → church-core → API ❌ Frontend → fetch() → External API (eliminated) Files: +13 admin routes, -1843 line JS file, enhanced Rust core
8 lines
301 B
TOML
8 lines
301 B
TOML
[target.x86_64-unknown-linux-gnu]
|
|
linker = "x86_64-linux-gnu-gcc"
|
|
|
|
[env]
|
|
CC_x86_64_unknown_linux_gnu = "x86_64-linux-gnu-gcc"
|
|
CXX_x86_64_unknown_linux_gnu = "x86_64-linux-gnu-g++"
|
|
AR_x86_64_unknown_linux_gnu = "x86_64-linux-gnu-ar"
|
|
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER = "x86_64-linux-gnu-gcc" |