bash-config.sample.cfg 774 B

123456789101112131415161718192021222324252627282930
  1. #### PARAMETERS USED BY AWS
  2. STACK_NAME=joystream-node
  3. REGION=us-east-1
  4. CLI_PROFILE=joystream-user
  5. KEY_PATH="/Users/joystream/Joystream/joystream-key.pem"
  6. AWS_KEY_PAIR_NAME="joystream-key"
  7. EC2_INSTANCE_TYPE=t2.micro
  8. # Set a prebuilt AMI if required
  9. EC2_AMI_ID="ami-064f99551235fb1ac"
  10. ACCOUNT_ID=$(aws sts get-caller-identity --profile $CLI_PROFILE --query Account --output text)
  11. NEW_STACK_NAME="${STACK_NAME}-${ACCOUNT_ID}"
  12. DATA_PATH="data-$NEW_STACK_NAME"
  13. INVENTORY_PATH="$DATA_PATH/inventory"
  14. #### PARAMETERS USED BY ANSIBLE
  15. LOCAL_CODE_PATH="~/Joystream/joystream"
  16. NETWORK_SUFFIX=7891
  17. GIT_REPO="https://github.com/Joystream/joystream.git"
  18. BRANCH_NAME=sumer
  19. # If true will build LOCAL_CODE_PATH otherwise will pull from GIT_REPO:BRANCH_NAME
  20. BUILD_LOCAL_CODE=false