mirror of https://github.com/usbharu/Hideout.git
feat: postgres対応
This commit is contained in:
parent
9f0eaaddbd
commit
725f6e54a4
|
@ -140,6 +140,9 @@ dependencies {
|
|||
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-slf4j:1.7.3")
|
||||
implementation("dev.usbharu:http-signature:1.0.0")
|
||||
|
||||
implementation("org.postgresql:postgresql:42.6.0")
|
||||
|
||||
|
||||
implementation("io.ktor:ktor-client-logging-jvm:$ktor_version")
|
||||
|
||||
testImplementation("org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version")
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package dev.usbharu.hideout.application
|
||||
package dev.usbharu.hideout
|
||||
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication
|
||||
import org.springframework.boot.context.properties.ConfigurationPropertiesScan
|
|
@ -35,6 +35,7 @@ spring:
|
|||
enabled: true
|
||||
exposed:
|
||||
generate-ddl: true
|
||||
excluded-packages: dev.usbharu.hideout.core.infrastructure.kjobexposed
|
||||
server:
|
||||
tomcat:
|
||||
basedir: tomcat
|
||||
|
|
Loading…
Reference in New Issue