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
"camelcase" : false, // false: Identifiers do not need to be in camelCase. We would like to enforce this except for when interacting with our api objects which use snakeCase properties.
8
+
"curly" : false, // false: Do not require {} for every new block or scope
Copy file name to clipboardexpand all lines: README.md
+8-4
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ node-lambda deploy
35
35
36
36
#### setup
37
37
38
-
Initializes the `event.json`and `.env` files. `event.json` is where you mock your event. `.env.` is where you place your deployment configuration.
38
+
Initializes the `event.json`, `.env` files, and `deploy.env` files. `event.json` is where you mock your event. `.env.` is where you place your deployment configuration. `deploy.env` has the same format as `.env`, but is used for holding any environment/config variables that you need to be deployed with your code to Lambda but you don't want in version control (e.g. DB connection info).
39
39
40
40
```
41
41
$ node-lambda setup --help
@@ -47,10 +47,10 @@ $ node-lambda setup --help
47
47
-h, --help output usage information
48
48
```
49
49
50
-
After running setup, it's a good idea to gitignore the generated `event.json` and `.env`file.
50
+
After running setup, it's a good idea to gitignore the generated `event.json` and `.env`files.
AWS Lambda doesn't let you set environment variables for your function, but in many cases you will need to configure your function with secure values that you don't want to check into version control. Use the sample `deploy.env` file to set environment variables that will be prepended to your compiled Lambda function before it gets uploaded to S3. For example, a DB connection string or encryption key.
0 commit comments