mirror of
https://github.com/azaion/admin.git
synced 2026-06-21 16:31:10 +00:00
3a925b9b0f
- Deleted the `POST /resources/get/{dataFolder?}` and `GET /resources/get-installer` endpoints as part of the architectural shift towards simplified resource management.
- Removed associated methods and configurations, including `ResourcesService.GetEncryptedResource`, `ResourcesService.GetInstaller`, and related properties in `ResourcesConfig`.
- Cleaned up environment variables and configuration files to reflect the removal of installer-related settings.
- Eliminated the `GetResourceRequest` DTO and its validator, along with the `WrongResourceName` error code.
- Updated documentation to clarify the changes in resource handling and the retirement of per-user file encryption.
Co-authored-by: Cursor <cursoragent@cursor.com>
19 lines
592 B
Bash
19 lines
592 B
Bash
# Plain-text overlay for production — committed; safe to read.
|
|
# Loaded BEFORE the sops-decrypted overlay; secret values stay encrypted.
|
|
|
|
ASPNETCORE_ENVIRONMENT=Production
|
|
ASPNETCORE_URLS=http://+:8080
|
|
|
|
ASPNETCORE_JwtConfig__Issuer=AzaionApi
|
|
ASPNETCORE_JwtConfig__Audience=Annotators/OrangePi/Admins
|
|
ASPNETCORE_JwtConfig__TokenLifetimeHours=4
|
|
ASPNETCORE_ResourcesConfig__ResourcesFolder=Content
|
|
|
|
DEPLOY_CONTAINER_NAME=azaion.api
|
|
DEPLOY_HOST_PORT=4000
|
|
DEPLOY_HOST_CONTENT_DIR=/root/api/content
|
|
DEPLOY_HOST_LOGS_DIR=/root/api/logs
|
|
|
|
REGISTRY_HOST=docker.azaion.com
|
|
REGISTRY_IMAGE=azaion/admin
|