revert: remove .env loading, restore hardcoded config

- appsettings.json: restored hardcoded secrets
- Program.cs: removed .env file loader
- Frontend api-clients: restored hardcoded localhost:5000
- Removed .env, .env.example, vite-env.d.ts files
- Kept all audit fixes (endpoints, DTOs, field names, status labels)
This commit is contained in:
MingNian
2026-05-24 13:38:45 +08:00
parent ede4a8d29e
commit db443b258e
14 changed files with 93 additions and 155 deletions

View File

@@ -5,6 +5,7 @@ using HealthManager.Application.Services;
using HealthManager.Domain.Entities;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
namespace HealthManager.WebApi.Controllers;