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
# ~/.zshrc | |
ZSH_DISABLE_COMPFIX=true | |
export ZSH="/Users/joshholtz/.oh-my-zsh" | |
# joshdholtz theme shows arch type in the prompt | |
ZSH_THEME="joshdholtz" | |
plugins=(git) | |
source $ZSH/oh-my-zsh.sh | |
# M1 and Rosetta |
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
name: Build and Deploy to Gatsby every hour | |
on: | |
schedule: | |
- cron: '0 */2 * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest |
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
# Disclaimer: This is untested | |
# | |
# Odoo.com ERP version 11 | |
# | |
# Local testing via "$ docker-compose up" and navigating to localhost:8069 | |
# | |
# Deploy to Google Cloud Platform's Kubernetes Engine to make use of available | |
# capacity in your existing GKE cluster (if you have it). | |
# | |
# 1. Create a GCP account at console.cloud.google.com, install "gcloud" and "kubectl" |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream