Getting Started
How to start using arche
Getting Started
Install Dependencies
pnpm installStart Development
# Start both frontend and backend
pnpm run dev
# Start separately
cd pkg/be && pnpm run dev # Backend :8765
cd pkg/fe && pnpm run dev # Frontend :5173Project Structure
arche/
├── pkg/
│ ├── be/ # Backend (Hono + Cloudflare Workers)
│ └── fe/ # Frontend (React + TanStack Start)
└── ...