# geektime-todo **Repository Path**: smile-monkey/geektime-todo ## Basic Information - **Project Name**: geektime-todo - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-04-01 - **Last Updated**: 2024-04-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Geektime Todo ## 简介 这是《极客时间》专栏的 Todo 项目示例。 ## 基本用法 * 生成 IDEA 工程 ```shell ./gradlew idea ``` * 检查 ```shell ./gradlew check ``` * 数据库迁移 ```shell ./gradlew migrate ``` * 生成构建产物 ```shell ./gradlew build ``` * 生成发布包 对于 CLI 项目,运行如下命令 ```shell ./gradlew uberJar ``` 在 todo-cli/build/libs 下就会生成一个 Uber JAR,它是可以独立运行的。 ```shell java -jar todo-uber-.jar ```