One‑stop repo to install & configure my Linux dev stack
(Ubuntu 24.04 +, Node.js, Eleventy, VS Code, Firefox, etc.)
bash <(curl -fsSL \
https://raw.githubusercontent.com/SteveJettMedia/dev-env-bootstrap/main/scripts/bootstrap.sh)Zero Click Curl One Liner
bash <(curl -fsSL https://raw.githubusercontent.com/SteveJettMedia/dev-env-bootstrap/main/scripts/bootstrap.sh)git clone https://github.com/<SteveJettMedia>/dev-env-bootstrap.git
cd dev-env-bootstrap
bash scripts/bootstrap.sh- scripts/ – automated installers & helpers
- docs/ – step‑by‑step setup guides
- dotfiles/ – shell & editor configurations
- Ubuntu 24.04 LTS (or similar Debian‑based distro)
git&curlinstalled
- Core APT packages:
build-essential,curl,git,firefox - NVM & Node.js – latest LTS release
- Global npm CLIs:
netlify-cli,npm-check-updates,serve - Symlinks for dotfiles (
.bashrc, VS Code settings) into your home folder - Reloads the current shell so everything is ready immediately
Save this file as scripts/bootstrap.sh and make it executable (chmod +x scripts/bootstrap.sh):
#!/usr/bin/env bash
set -euo pipefail
echo "🔄 Updating APT repos…"
sudo apt update -y && sudo apt upgrade -y
echo "📦 Installing base packages…"
sudo apt install -y build-essential curl git firefox
# Install NVM & Node.js LTS
if ! command -v nvm &>/dev/null; then
echo "🌀 Installing nvm…"
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash
export NVM_DIR="$HOME/.nvm"
# shellcheck source=/dev/null
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
fi
echo "🟢 Installing Node.js LTS…"
nvm install --lts
echo "🔧 Installing global npm tools…"
npm install -g netlify-cli npm-check-updates serve
# Symlink dotfiles
ln -svf "$PWD/dotfiles/.bashrc" "$HOME/.bashrc"
ln -svf "$PWD/dotfiles/vscode/settings.json" \
"$HOME/.config/Code/User/settings.json"
echo "✅ Bootstrap complete! Reloading shell…"
exec "$SHELL"dev-env-bootstrap/
├─ README.md
├─ CHANGELOG.md
├─ .gitignore
├─ docs/
│ ├─ wsl-setup.md
│ ├─ vscode-setup.md
│ └─ eleventy-guide.md
├─ scripts/
│ ├─ bootstrap.sh
│ └─ create-eleventy-project.sh
└─ dotfiles/
├─ .bashrc
└─ vscode/
└─ settings.json
Once you’ve cloned dev-env-bootstrap, you can spin up a fresh Eleventy project with:
# If you’ve linked the helper script globally (see bin/newsite)
newsite <directory> [“Site Name”] [#BrandColor] [domain.com]
Or call it directly:
bash
Copy
Edit
./scripts/create-eleventy-site.sh <directory> [“Site Name”] [#BrandColor] [domain.com]
Parameters
<directory> Where to create the new project (e.g. acme-corp)
“Site Name” (Optional) Display name used in templates (default: “My Site”)
#BrandColor (Optional) Primary brand color in hex (default: #ff6a3e)
domain.com (Optional) Production URL (default: example.com)
What this does
Clones the Eleventy starter into <directory>
Populates src/_data/site.json with your site name, color, domain, and current year
Copies all core page stubs into src/pages/
Ensures netlify.toml is present for instant deploy on Netlify
Prints instructions to run:
bash
Copy
Edit
cd <directory>
npm install
npm run dev
---
## Contributing
1. Fork & clone this repo
2. Create a feature branch
```bash
git checkout -b feat/your-change- Commit with Conventional Commits (
feat:,fix:,docs:) - Push & open a PR against main
- Tag releases
git tag -a vX.Y.Z -m "Release vX.Y.Z" git push --tags
See CHANGELOG.md for version history.