-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
57 lines (47 loc) · 1.02 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import io.kotless.plugin.gradle.dsl.kotless
plugins {
kotlin("jvm") version "1.5.31"
id("io.kotless") version "0.2.0"
}
group = "com.uramnoil"
version = "1.0"
repositories {
mavenCentral()
maven(url = uri("https://packages.jetbrains.team/maven/p/ktls/maven"))
}
dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation("io.kotless", "ktor-lang", "0.2.0")
implementation("io.kotless", "ktor-lang-aws", "0.2.0")
}
tasks {
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
}
kotless {
config {
aws {
storage {
bucket = "kotless-ping-pong"
prefix = "dev"
}
profile = "kotless-ping-pong"
region = "ap-northeast-1"
}
}
webapp {
lambda {
memoryMb = 1024
timeoutSec = 120
}
}
extensions {
terraform {
allowDestroy = true
}
}
}