Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .envrc
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ fi
# Project environment variables
export PROJECT_NAME="wokelangiser"
export RSR_TIER="infrastructure"
# export DATABASE_URL="..."
# export API_KEY="..."
# Optional local secrets/overrides: see .envrc.example, then put real values
# in a local, gitignored .env (sourced below) — never commit real secrets.

# Source .env if it exists (gitignored)
dotenv_if_exists
11 changes: 11 additions & 0 deletions .envrc.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# SPDX-License-Identifier: MPL-2.0
# .envrc.example — optional local environment variables (template).
#
# Don't put real secrets in this tracked file or in .envrc. If your setup needs
# extra variables, create a local, gitignored .env (loaded by dotenv_if_exists
# in .envrc) containing NAME=value lines. Variables some setups use:
#
# * DATABASE_URL — your database connection string
# * an API key — credential for any external service you call
#
# Real values live only in that gitignored .env, never in git.
4 changes: 1 addition & 3 deletions setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
# sh setup.sh
# # …or after cloning:
# ./setup.sh
# # Convenience one-liner (review the script first — you are trusting the network):
# curl -fsSL https://raw.githubusercontent.com/hyperpolymath/wokelangiser/main/setup.sh | sh
#
# Copyright (c) 2026 Jonathan D.A. Jewell (hyperpolymath)

Expand Down Expand Up @@ -132,7 +130,7 @@ detect_platform() {
esac
}

# ── Verified install of just (pinned version + SHA256; avoids curl|sh, CWE-494) ──
# ── Verified install of just (pinned version + SHA256; no pipe-to-shell, CWE-494) ──
# Bump JUST_VERSION and the four SHA256 values together from:
# https://github.com/casey/just/releases (each release publishes SHA256SUMS)
install_just_pinned() {
Expand Down
Loading