You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
csamsserver/resources/application.conf

21 lines
502 B

ktor {
deployment {
port = 8080
port = ${?PORT}
mysql = {
username = root
password = 123456
jdbcUrl = "jdbc:mysql://localhost:3306/csams"
driverClassName = "com.mysql.cj.jdbc.Driver"
}
watch = [ classes ]
}
application {
modules = [
com.gyf.csams.ApplicationKt.module,
com.gyf.csams.MySQLKt.MySQL,
com.gyf.csams.ApplicationKt.Controller
]
}
}