Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 993 Bytes

README.md

File metadata and controls

38 lines (29 loc) · 993 Bytes

DevEnv

This is my personal development environment (DevEnv) to setup my computer from scratch. Instructions are below.

Clone this repo and run setup

mkdir -p dev/work
mkdir -p dev/personal && cd $_
git clone https://github.com/rmgpinto/devenv.git
cd devenv
./devenv.sh setup

Setup

  1. Login 1Password
  2. Setup 1Password CLI
op account add --address my.1password.com --signin
  1. Load config/raycast/raycast.rayconfig into Raycast
  2. Follow 1Password SSH agent instructions

Notes

Due to 1Password CLI being slow (op read), I've used the following:

# add secret to keychain
security add-generic-password -a “${USER}” -s name-of-my-secret -w

# read secret from keychain
security find-generic-password -a “${USER}” -s name-of-my-secret -w

# delete secret from keychain
security delete-generic-password -a “${USER}” -s name-of-my-secret