# test_flask_project **Repository Path**: jasonminghao/test_flask_project ## Basic Information - **Project Name**: test_flask_project - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-04-08 - **Last Updated**: 2026-04-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Flask Test Project 一个最小可运行的 Flask 项目,提供测试接口 `/api/v1/test`。 ## 环境准备 ```bash python3 -m venv .venv source .venv/bin/activate pip install -r requirements.txt ``` ## 启动项目 ```bash python run.py ``` 服务默认运行在 `http://127.0.0.1:5000`。 ## 测试接口 ```bash curl http://127.0.0.1:5000/api/v1/test ```