-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserverless.ts
91 lines (90 loc) · 2.43 KB
/
serverless.ts
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
import type { Serverless } from 'serverless/aws';
module.exports = <Partial<Serverless>>{
service : "test-sentry",
frameworkVersion : '3',
package : {
individually : true,
excludeDevDependencies : true,
},
provider: {
name: 'aws',
region: 'eu-west-1',
runtime: 'nodejs20.x',
architecture: 'arm64',
memorySize: 1024,
stage: '${opt:stage, "local"}',
environment: {
dsn: process.env.DSN,
environment: process.env.ENVIRONMENT,
release: process.env.VERSION,
},
},
custom: {
esbuild: {
external: [
'pg',
'pg-query-stream',
'better-sqlite3',
'tedious',
'mysql',
'oracledb',
'sqlite3',
],
bundle: true,
concurrency: 3,
zipConcurrency: 3,
minify: true,
target: 'node20',
packager: 'npm',
sourcemap: true,
sourcesContent: false,
treeShaking: true,
mainFields: ['module', 'main'],
watch: {
pattern: [
'index.ts',
],
ignore: [
'.esbuild',
'dist',
'node_modules',
'.build',
'./**/*.(js|ts)',
],
},
exclude: [
'@aws-sdk',
],
},
},
plugins: [
'serverless-esbuild',
'serverless-analyze-bundle-plugin',
],
functions: {
testWithoutSentry : {
handler : 'src/handler-without-sentry.handler',
maximumRetryAttempts : 0,
events : [
{
http : {
method : 'get',
path : '/test/without',
},
},
],
},
testWithSentry : {
handler : 'src/handler-with-sentry.handler',
maximumRetryAttempts : 0,
events : [
{
http : {
method : 'get',
path : '/test/with',
},
},
],
},
},
};