Skip to content

Commit 16036a6

Browse files
committed
add basic deployment with Serverless
1 parent 83de851 commit 16036a6

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.serverless
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
11
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
service: troubleshooting
2+
frameworkVersion: '3'
3+
4+
provider:
5+
name: aws
6+
runtime: java11
7+
stage: production
8+
region: eu-central-1
9+
timeout: 15
10+
memorySize: 1024
11+
logRetentionInDays: 7
12+
13+
package:
14+
artifact: target/Function-1.0.jar
15+
16+
functions:
17+
test-logging:
18+
handler: helloworld.App

0 commit comments

Comments
 (0)