You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+64-6
Original file line number
Diff line number
Diff line change
@@ -2,15 +2,15 @@
2
2
3
3
### Custom Vert.x Native for AWS Lambda
4
4
5
-
*Disclaimer - This project should be considered a POC and has not been tested or verified for production use.
5
+
*Disclaimer - This project should be considered a POC and has not been tested or verified for production use.
6
6
If you decided to run this on production systems you do so at your own risk.*
7
7
8
8
### Building this Runtime
9
9
10
10
11
-
#### Prerequisites
11
+
#### Prerequisites
12
12
13
-
Make sure you have the following installed on your build machine before getting started.
13
+
Make sure you have the following installed on your build machine before getting started.
14
14
15
15
* GraalVM
16
16
* AWS CLI
@@ -38,17 +38,75 @@ Add the following commands to the ```bootstrap```
38
38
/opt/target/lambda
39
39
```
40
40
41
-
Note that the path we're using in our shell script is ```/opt```. When you create a Lambda Layer, as we'll do shortly, AWS Lambda copies all the runtime files to the ```/opt``` directory. This directory is effectively the home directory for our custom runtime.
41
+
Note that the path we're using in our shell script is ```/opt```. When you create a Lambda Layer, as we'll do shortly, AWS Lambda copies all the runtime files to the ```/opt``` directory. This directory is effectively the home directory for our custom runtime.
42
42
43
43
##### Make bootstrap executable
44
44
```
45
-
$ chmod +x bootstrap
45
+
$ chmod +x bootstrap
46
46
```
47
47
48
48
##### Create a deployment package
49
49
50
-
In the root of the folder containing our ```bootstrap``` and ```target/lambda``` files, create a zip archive containing the artifacts.
50
+
In the root of the folder containing our ```bootstrap``` and ```target/lambda``` files, create a zip archive containing the artifacts.
0 commit comments