瀏覽代碼

gradlew bootRun

# This command can simplily run the backend in cmd now
reset-do-picking-order
Fai Luk 1 周之前
父節點
當前提交
003468bb68
共有 1 個文件被更改,包括 8 次插入0 次删除
  1. +8
    -0
      build.gradle

+ 8
- 0
build.gradle 查看文件

@@ -92,3 +92,11 @@ configurations {
kotlin {
jvmToolchain(17)
}

bootRun {
// Use db-local profile by default so datasource is loaded (application-db-local.yml).
// Override with: ./gradlew bootRun --args='--spring.profiles.active=prod'
if (!project.hasProperty('spring.profiles.active')) {
args '--spring.profiles.active=db-local'
}
}

Loading…
取消
儲存