# trial-time-app **Repository Path**: FlyTank/trial-time-app ## Basic Information - **Project Name**: trial-time-app - **Description**: 这是我的一个时间应用,展示当前时间 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-12-19 - **Last Updated**: 2026-01-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Trial Time App 一个最简单的 Spring Boot HelloWorld 项目,用于测试 CI/CD。 ## 接口 - `GET /` - 返回 "Hello World!" - `GET /health` - 健康检查,返回 "OK" ## 本地运行 ```bash mvn spring-boot:run ``` ## 构建 ```bash mvn clean package ``` ## Docker 构建 ```bash docker build -t trial-time-app . docker run -p 8080:8080 trial-time-app ```