-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbb.edn
79 lines (66 loc) · 4.5 KB
/
bb.edn
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
{:deps {io.github.FieryCod/holy-lambda-babashka-tasks
{:git/url "https://github.com/FieryCod/holy-lambda"
:deps/root "./modules/holy-lambda-babashka-tasks"
:sha "1469bb96b85c2c65a52df9e3a4914dde1b4c816f"}
io.github.FieryCod/holy-lambda {:mvn/version "0.6.6"}}
;; Minimal babashka version which should be used in conjuction with holy-lambda
:min-bb-version "0.3.7"
:holy-lambda/options {
:docker {
;; Check https://docs.docker.com/network/
;; Network setting for future versions of HL will propagate to AWS SAM as well
;; Options: "host"|"bridge"|"overlay"|"none"|nil|"macvlan"
:network nil
;; HL runs some bb tasks in docker context. You can put additional resources to the context by using volumes.
;; ----------------------------------------------------------------------------
;; Single volume definition:
;;
;; {:docker "/where-to-mount-in-docker"
;; :host "relative-local-path"}
:volumes []
;; GraalVM Community holy-lambda compatible docker image
;; You can always build your own GraalVM image with enterprise edition
:image "ghcr.io/fierycod/holy-lambda-builder:amd64-java11-22.0.0.2"}
:build {:compile-cmd "clojure -X:uberjar"
;; Used when either :docker is nil or
;; `HL_NO_DOCKER` environment variable is set to "true"
;; Might be set via `GRAALVM_HOME` environment variable
:graalvm-home "~/.graalvm"}
:backend
{
;; Babashka pods should be shipped using AWS Lambda Layer
;; Check this template https://github.com/aws-samples/aws-lambda-layers-aws-sam-examples/blob/master/aws-sdk-layer/template.yaml
;; and official docs https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/serverless-sam-cli-layers.html
;; CodeUri should be `.holy-lambda/pods`
;; For now pods should be declared in `bb.edn`. See: https://github.com/babashka/babashka/issues/768#issuecomment-825016317
;;
;; `IMPORTANT:` 3rd party babashka compatible libraries should be distributed as a layers (CodeUri: .holy-lambda/bb-clj-deps)
:pods {}
;; For `:native` backend you can provide your own bootstrap file
:bootstrap-file "bootstrap"
;; For `:native` backend you can provide some native resources which will be available during lambda execution
;; Resources are packed as is.
:native-deps "resources"
;; Specify custom arguments for native image generation
;; Check https://www.graalvm.org/reference-manual/native-image/Options/
:native-image-args ["--verbose"
"--no-fallback"
"--report-unsupported-elements-at-runtime"
"-H:+AllowIncompleteClasspath"
"--no-server"]}}
:tasks {:requires ([holy-lambda.tasks])
hl:docker:run holy-lambda.tasks/hl:docker:run
hl:native:conf holy-lambda.tasks/hl:native:conf
hl:native:executable holy-lambda.tasks/hl:native:executable
hl:babashka:sync holy-lambda.tasks/hl:babashka:sync
hl:compile holy-lambda.tasks/hl:compile
hl:doctor holy-lambda.tasks/hl:doctor
hl:clean holy-lambda.tasks/hl:clean
hl:update-bb-tasks holy-lambda.tasks/hl:update-bb-tasks
hl:version holy-lambda.tasks/hl:version
clean (do
(shell {:dir "exceptions"} "./gradlew clean")
(run 'hl:clean))
compile (do
(shell {:dir "exceptions"} "./gradlew jar")
(run 'hl:compile))}}