Skip to content

Instantly share code, notes, and snippets.

View princechrix's full-sized avatar
🎯
Focusing

Prince Chrix princechrix

🎯
Focusing
  • Kigali, Rwanda
  • 23:09 (UTC +03:00)
View GitHub Profile
@princechrix
princechrix / dev-start.sh
Created October 7, 2025 10:10
Simple CLI script to auto-detect and start any project.
#!/bin/bash
# dev-start.sh — auto-detect and run any dev project
echo "Detecting project type..."
sleep 0.3
# --- JavaScript projects ---
if [ -f "package.json" ]; then
# detect package manager
if [ -f "bun.lockb" ]; then