-
Notifications
You must be signed in to change notification settings - Fork 66
en Getting Started
github-actions[bot] edited this page Jul 6, 2026
·
2 revisions
Overview · Features · Tech Stack · Quick Start · Deployment · Project Structure · Architecture · Widgets · API · Database · Settings · Security · Configuration · Roadmap · License
- Node.js 20+
- Wrangler CLI
git clone https://github.com/HaradaKashiwa/ternssh.git
cd ternssh
npm install
# Apply D1 migrations (required on first run)
npm run db:migrate:local
# Option A: Split frontend/backend (hot reload)
npm run dev:server # Workers + static assets, default http://localhost:8787
npm run dev:web # Vite dev server, proxies /api
# Option B: Integrated preview closer to production
npm run build
npm run dev:server