View VSDiff.bat
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
"%VS140COMNTOOLS%/../ide/vsdiffmerge" "%1" "%2" |
View gist:738fd9634cb30938b9e98a2f13491e4a
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
sed -r -i "s|(\"version\"\s*:\s*\")([^\"]+)(\")|\1\2-beta.$CI_JOB_ID\3|" package.json |
View click-outside-directive.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
/* This is handy with ui-bootstrap since you can do this: | |
<nav click-outside="expanded = false" | |
... | |
<button type="button" class="navbar-toggle collapsed" ng-click="expanded = !expanded" ... | |
... | |
<div uib-collapse="!expanded" class="collapse navbar-collapse"> | |
*/ | |
angular.module('myModule').directive('clickOutside', ExpandCollapse); |
View docker-rebuild.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
# Note: Assumes dockerfile is in ~/app and content is in ~/app/publish.tar.gz | |
proj=$1 | |
cd ~/app | |
docker rm $(docker stop $(docker ps -a -q --filter ancestor=$proj --format="{{.ID}}")) | |
rm -rf publish | |
tar -xvzf publish.tar.gz | |
docker build -t $proj . | |
docker run -d -p 80:5000 $proj |
View docker-rm-all.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
docker stop $(docker ps -a -q) | |
docker rm $(docker ps -a -q) |
View find-mkdocs-components.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
#!/bin/bash | |
find . | grep -E "^\./components/(.*)/docs$" | while read -r path; do | |
folder=$(echo "$path" | sed 's/^.\/components\(.*\)\/docs$/\1/') | |
mkdir -p ./docs/components/$folder | |
cp -r $path/* ./docs/components/$folder | |
done |
View sam-pipeline-bootstrap.yaml
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
AWSTemplateFormatVersion: '2010-09-09' | |
Transform: AWS::Serverless-2016-10-31 | |
Parameters: | |
PipelineUserArn: | |
Type: String | |
PipelineExecutionRoleArn: | |
Type: String | |
CloudFormationExecutionRoleArn: | |
Type: String |
View github-actions-sam-pipeline.yaml
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
name: Pipeline | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'feature**' | |
env: | |
PIPELINE_USER_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} |
View sam-bootstrap-stack-named.yaml
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
AWSTemplateFormatVersion: '2010-09-09' | |
Transform: AWS::Serverless-2016-10-31 | |
Description: > | |
This template deploys resources required for deploying a Lambda function via SAM. This template was initially | |
created by running sam pipeline bootstrap. This command creates a CloudFormation stack and deploys it to | |
a specific account. Therefore, this template can be updated to match future SAM requirements by running | |
sam pipeline bootstrap and then capturing the template from the generated stack. | |
The names of resources have been set in this template to allow for reuse across multiple Lambda deployments. | |
The GitHub actions workflow included in this project uses default values for resources which match the naming |
View postgres-stack.yml
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
AWSTemplateFormatVersion: '2010-09-09' | |
Parameters: | |
PostgresVpcId: | |
Type: 'AWS::EC2::VPC::Id' | |
Subnet1: | |
Type: String | |
Subnet2: | |
Type: String | |
HostedZoneId: | |
Type: String |
OlderNewer