Used for connecting to GCP services
mkdir ~/.gcloud && cp ~/Dropbox/config/cloud_sql_proxy ~/.gcloud/cloud_sql_proxy
- Generate new key:
ssh-keygen -t rsa -b 4096 -C "nedergaardmads@gmail.com"
- Add to ssh-agent
- Add key to relevant sites (e.g. Github, GCP, etc.)
- Github:
pbcopy < ~/.ssh/id_rsa.pub
and add it under "Github > Settings > SSH and GPG Keys"
- Github:
pyenv install 3.8.12
pyenv global 3.8.12
- Verify that it's working:
python -V
pipx install poetry
brew install postgresql
brew services start postgres
- Follow this guide: https://docs.github.com/en/authentication/managing-commit-signature-verification/generating-a-new-gpg-key
- And this guide: https://gist.github.com/koshatul/2427643668d4e89c0086f297f9ed2130
Git: gpg failed to sign the data
Solution: gpgconf --kill gpg-agent
(restarts the agent)