Skip to content

Instantly share code, notes, and snippets.

View criticalmash's full-sized avatar

John O'Donnell criticalmash

  • Critical Mash, LLC
  • Cleveland, OH, US
View GitHub Profile
@mihow
mihow / load_dotenv.sh
Last active April 17, 2025 16:08
Load environment variables from dotenv / .env file in Bash
# The initial version
if [ ! -f .env ]
then
export $(cat .env | xargs)
fi
# My favorite from the comments. Thanks @richarddewit & others!
set -a && source .env && set +a
title description related
Plugins overview
High level overview of plugins and how they work.
docs libs
streams
assemble-fs
base-fs
assemble-streams

Depending on your needs, there are two different kinds of plugins available. PThis document provides a brief description of each, along with links to addtional information.