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
localstack: | |
container_name: localstack1 | |
image: localstack/localstack | |
environment: | |
- SERVICES=s3:4572 | |
- DATA_DIR=/tmp/localstack/data | |
ports: | |
- "4572:4572" | |
- "8080:8080" |
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
root = true | |
[*] | |
charset = utf-8 | |
end_of_line = lf | |
indent_size = 2 | |
indent_style = space | |
insert_final_newline = true | |
trim_trailing_whitespace = true |
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
# ignore all files | |
* | |
# include all folders | |
!**/ | |
# include files to format | |
!*.js | |
!*.json | |
!*.scss |
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
{ | |
"window.commandCenter": true, | |
"window.newWindowDimensions": "inherit", | |
"security.workspace.trust.enabled": false, | |
"workbench.startupEditor": "none", | |
"workbench.colorTheme": "Ayu Mirage", | |
"workbench.iconTheme": "ayu", |
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
alias ,fetch="git fetch" | |
alias ,pull="git pull" | |
alias ,push="git push" | |
alias ,pushu="git push --set-upstream origin HEAD" | |
alias ,prune="git remote prune origin" | |
alias ,gone="git branch -vv | awk '/^ .*gone/{print \$1}' | xargs -r git branch -d" | |
alias ,undo="git reset --soft HEAD~1" |