I hereby claim:
- I am dphang on github.
- I am dphang (https://keybase.io/dphang) on keybase.
- I have a public key ASAkI9Pl6dIHYq31qLtagTK9FSCP5kKoahj0hVvEm_WsKwo
To claim this, I am signing this object:
| // Return from Lambda | |
| return { | |
| status: "200", | |
| statusDescription: "OK", | |
| headers: { | |
| "content-type": [ | |
| { | |
| key: "Content-Type", | |
| value: "text/html" | |
| } |
| #!/usr/bin/env node | |
| // Example (opinionated) configuration with yarn (I use TypeScript/Node environment, feel free to adapt this file to JS if needed). Note: I am running in Node 12.x environment with aws cli installed. | |
| // 1. Copy this file to scripts/deployer.ts (or any other you prefer) | |
| // 2. Add "deploy": "ts-node --project tsconfig.scripts.json scripts/deployer.ts deploy" to your package.json file | |
| // 3. You may also need to install devDependencies like yargs, @types/node, @types/yargs, js-yaml, @types/js-yaml | |
| // 4. I also add tsconfig.scripts.json like the following: | |
| /* | |
| { |
I hereby claim:
To claim this, I am signing this object:
| # | |
| # templatetags/kwacros.py - Support for macros in Django templates | |
| # | |
| # Based on snippet by | |
| # Author: Michal Ludvig <[email protected]> | |
| # http://www.logix.cz/michal | |
| # | |
| # modified for args and kwargs by Skylar Saveland http://skyl.org | |
| # updated for Python 3 by Daniel Phang on March 2, 2014 | |
| # |