Feat: Implement token tracking, soft delete, and Admin UI improvements

This commit is contained in:
2026-02-10 01:00:26 +08:00
parent 6924e86b8d
commit 968eb173dd
14 changed files with 1763 additions and 180 deletions

View File

@@ -0,0 +1,27 @@
---
description: How to run the application using uv
---
1. **Initialize Project** (Already done)
If you haven't already:
```powershell
uv init
```
2. **Install Dependencies** (Already done)
Install required packages:
```powershell
uv add -r requirements.txt
```
3. **Run Application**
You can run the application directly using `uv run`. This automatically uses the virtual environment managed by `uv`.
**Option A: Using the run script (Recommended)**
```powershell
uv run run.py
```
**Option B: Using Uvicorn directly**
```powershell
uv run uvicorn app.main:app --reload
```