- Official Download Page
- (Under Construction)
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
#!/usr/bin/env bash | |
# get script path | |
SCRIPT_DIR=$(cd $(dirname $0); pwd) | |
cd $SCRIPT_DIR | |
# Clone anyenv | |
if [ ! -d ${HOME}/.anyenv ]; then | |
git clone https://github.com/anyenv/anyenv ${HOME}/.anyenv | |
else |
refs:
- https://medium.com/avmconsulting-blog/provisioning-aws-infrastructure-with-terraform-6ab885fb3fcb
- https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/key_pair
- https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ec2_tag
- https://www.terraform.io/docs/commands/environment-variables.html
- https://ngyuki.hatenablog.com/entry/20200802/1596333055
refs:
- https://medium.com/avmconsulting-blog/provisioning-aws-infrastructure-with-terraform-6ab885fb3fcb
- https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/key_pair
- https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ec2_tag
- https://www.terraform.io/docs/commands/environment-variables.html
- https://ngyuki.hatenablog.com/entry/20200802/1596333055
refs:
- https://medium.com/avmconsulting-blog/provisioning-aws-infrastructure-with-terraform-6ab885fb3fcb
- https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/key_pair
- https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ec2_tag
- https://www.terraform.io/docs/commands/environment-variables.html
- https://ngyuki.hatenablog.com/entry/20200802/1596333055
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
# put $HOME/.ssh/config & chmod 600 | |
ServerAliveInterval 60 | |
# ADD & EDIT BELOW: | |
Host ec2-ubuntu-dev | |
HostName ec2-XX-XX-XX-XX.ap-northeast-1.compute.amazonaws.com | |
User ubuntu | |
Port 22 | |
IdentityFile ~/.ssh/key_terraform |
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 | |
od -A n -t x1 -v $1 |
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
module.exports = { | |
root: true, | |
parser: '@typescript-eslint/parser', | |
parserOptions: { | |
project: './tsconfig.json' | |
}, | |
plugins: [ | |
'@typescript-eslint' | |
], | |
extends: [ |