← Back to list

local-dev-server
by Acurioustractor
Empathy Ledger: Indigenous Cultural Storytelling Platform - Clean architecture with cultural protocols, multi-tenant Supabase, and AI safety
⭐ 0🍴 0📅 Jan 21, 2026
SKILL.md
name: local-dev-server description: PM2-based local development server management for Empathy Ledger. Handles port conflicts and auto-restart.
Local Dev Server
PM2-based server management for reliable local development.
When to Use
- Starting/stopping dev server
- "Address already in use" errors
- Server crashes and needs restart
- Testing API endpoints
Quick Commands
# Start server (port 3030)
pm2 start npm --name "empathy-ledger" -- run dev
# Restart after code changes
pm2 restart empathy-ledger
# View logs
pm2 logs empathy-ledger
# Stop server
pm2 stop empathy-ledger
Fix Port Conflicts
# Kill process on port and restart
lsof -ti :3030 | xargs kill -9
pm2 start npm --name "empathy-ledger" -- run dev
ACT Ecosystem
# Start all projects
/Users/benknight/act-global-infrastructure/deployment/scripts/deploy-act-ecosystem.sh start
# Restart all
/Users/benknight/act-global-infrastructure/deployment/scripts/deploy-act-ecosystem.sh restart
# Stop all
/Users/benknight/act-global-infrastructure/deployment/scripts/deploy-act-ecosystem.sh stop
PM2 vs npm run dev
- Use PM2: Auto-restart, centralized logs, multi-project
- Use npm run dev: Quick testing, active debugging
Reference Files
| Topic | File |
|---|---|
| Full PM2 reference | refs/pm2-commands.md |
Related Skills
deployment-workflow- Production deploymentsupabase-connection- Database setup
Score
Total Score
60/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
✓説明文
100文字以上の説明がある
+10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon