516a903497
- Removed company-specific template rules from template application logic. - Enhanced question generation queries to support both 'imported-mysql' and 'imported-material' sources. - Introduced S3 audio storage functionality, including client setup and audio key generation. - Updated audio response evaluation to store audio files in S3 or fallback to DB. - Added new API routes for asset ingestion and ZIP import in CMS service. - Implemented role-based access control for audio responses in LMS service. - Created a smoke test script for validating audio roles and permissions. - Updated frontend to support course selection in audio evaluations.
38 lines
833 B
TOML
38 lines
833 B
TOML
[package]
|
|
name = "cms-service"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
|
|
[dependencies]
|
|
common = { path = "../../shared/common" }
|
|
axum.workspace = true
|
|
tokio.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
sqlx.workspace = true
|
|
chrono.workspace = true
|
|
uuid.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
dotenvy.workspace = true
|
|
tower-http.workspace = true
|
|
tower_governor.workspace = true
|
|
reqwest.workspace = true
|
|
bcrypt.workspace = true
|
|
jsonwebtoken.workspace = true
|
|
hmac.workspace = true
|
|
sha2.workspace = true
|
|
hex.workspace = true
|
|
openidconnect.workspace = true
|
|
anyhow.workspace = true
|
|
thiserror.workspace = true
|
|
http.workspace = true
|
|
zip = "0.6"
|
|
mime_guess = "2.0"
|
|
base64 = "0.22.1"
|
|
regex = "1.11"
|
|
rand = "0.8"
|
|
aws-config = "1"
|
|
aws-sdk-s3 = "1"
|