View terraform.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# other ACM, S3 resources | |
resource "aws_cloudfront_distribution" "site_distribution" { | |
enabled = true | |
is_ipv6_enabled = true | |
aliases = [var.site_name, "www.${var.site_name}"] | |
price_class = "PriceClass_100" | |
default_root_object = "index.html" | |
# ... | |
} |
View gopls_log
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Trace - 17:42:11.817 PM] Sending request 'initialize - (1)'. | |
Params: {"capabilities":{"textDocument":{"codeAction":{"codeActionLiteralSupport":{"codeActionKind":{"valueSet":["","quickfix","refactor","refactor.extract","refactor.inline","refactor.rewrite","source","source.organizeImports"]}}},"completion":{"completionItem":{"documentationFormat":["plaintext","markdown"]},"completionItemKind":{"valueSet":[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]}},"hover":{"contentFormat":["plaintext","markdown"]},"signatureHelp":{"signatureInformation":{"documentationFormat":["plaintext","markdown"],"parameterInformation":{"labelOffsetSupport":true}}},"synchronization":{"didSave":true}},"workspace":{"applyEdit":true,"configuration":true,"didChangeWatchedFiles":{"dynamicRegistration":true},"symbol":{"symbolKind":{"valueSet":[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]}},"workspaceEdit":{"documentChanges":true}}},"initializationOptions":{"hoverKind":"Structured"},"processId":8 |
View test.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
source ./functions.sh | |
for func in "${function_dirs[@]}" | |
do | |
cd "${BASE_DIR}/${func}" | |
go test | |
done |
View example_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"testing" | |
atl "github.com/yogeshlonkar/aws-lambda-go-test/local" | |
) | |
func TestMain(t *testing.T) { | |
response, err := atl.Run(atl.Input{}) |
View build.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
source ./functions.sh | |
# iterate over each package in array, create function and zip it | |
for func in "${function_dirs[@]}" | |
do | |
lambda_func=${func}-function | |
echo "Generating ${lambda_func} artifact" | |
# since each lambda directory contains exactly same main.go |
View example-main.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"github.com/aws/aws-lambda-go/lambda" | |
"your-repo/handlers" | |
) | |
func main() { | |
lambda.Start(handlers.RequestHandler) | |
} |
View example-handler.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package handlers | |
import ( | |
"context" | |
) | |
func RequestHandler(ctx context.Context) (string, error) { | |
return "some-string", nil | |
} |
View Abc.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Abc { | |
func1() { | |
return 'This is function 1' | |
} | |
func2() { | |
return 2; | |
} | |
func3() { | |
return Promise.resolve('three'); | |
} |
View signals_for_process.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import subprocess | |
ALL_SIGNALS = {} | |
for sig in range(64): | |
sig += 1 | |
sig_cmd = "kill -l " + str(sig) + " 2>/dev/null" | |
ALL_SIGNALS[sig] = subprocess.Popen(sig_cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, shell=True).communicate()[0].strip() | |
def getSignals(pid, sigCat): | |
signal_cmd = "grep \"^" + sigCat + ":\" \"/proc/" + str(pid) + "/status\" | cut -c 9-" |
NewerOlder