This file contains hidden or 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/sh | |
# VSCode Extensions List with install command script | |
# OpenAPI (Swagger) Editor | |
code --install-extension 42Crunch.vscode-openapi | |
# ESLint | |
code --install-extension dbaeumer.vscode-eslint | |
# Git History | |
code --install-extension donjayamanne.githistory |
This file contains hidden or 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
<img | |
src="https://images.pexels.com/photos/8499628/pexels-photo-8499628.jpeg?auto=compress&cs=tinysrgb&dpr=2&w=500" | |
alt="Short description for image. Detailed description below." | |
aria-describedby="description-extended" | |
/> | |
<div id="description-extended"> | |
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p> | |
</div> |
This file contains hidden or 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/sh | |
# source secrets and/or constants. This will export envs and populate process.env for Node in runtime | |
set -o allexport | |
SECRETS_FILE="/ci_folder/service.env" | |
set +o allexport | |
if [ -f "$SECRETS_FILE" ]; then | |
set -a | |
source "$SECRETS_FILE" | |
export CMS_HOST=${CMS_HOST} |
This file contains hidden or 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 | |
# Print pretty list of commits since last deploy. | |
# | |
# | |
# Usage example: | |
# | |
# ./bin/commits_since_deploy.sh analytics-app c9bad41 | |
# | |
# This will give you something like: |
This file contains hidden or 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
find . -name "node_modules" -type d -prune | xargs du -chs |
NewerOlder